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

<!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-12" 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>Fastly</organization>
      <address>
        <email>jri.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>martin.thomson@gmail.com</email>
      </address>
    </author>

    <date year="2018" month="May" day="22"/>

    <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
&lt;https://mailarchive.ietf.org/arch/search/?email_list=quic&gt;.</t>

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


    </note>


  </front>

  <middle>


<section anchor="introduction" 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 secure transport for multiple applications.</t>

<t><list style="symbols">
  <t>Version negotiation</t>
  <t>Low-latency connection establishment</t>
  <t>Authenticated and encrypted header and payload</t>
  <t>Stream multiplexing</t>
  <t>Stream and connection-level flow control</t>
  <t>Connection migration and resilience to NAT rebinding</t>
</list></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, connection migration, 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>

<t>QUIC version 1 conforms to the protocol invariants in <xref target="QUIC-INVARIANTS"/>.</t>

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

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”,
“SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>

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

<t><list style="hanging">
  <t hangText='Client:'>
  The endpoint initiating a QUIC connection.</t>
  <t hangText='Server:'>
  The endpoint accepting incoming QUIC connections.</t>
  <t hangText='Endpoint:'>
  The client or server end of a connection.</t>
  <t hangText='Stream:'>
  A logical, bi-directional channel of ordered bytes within a QUIC connection.</t>
  <t hangText='Connection:'>
  A conversation between two QUIC endpoints with a single encryption context
that multiplexes streams within it.</t>
  <t hangText='Connection ID:'>
  An opaque identifier that is used to identify a QUIC connection at an
endpoint.  Each endpoint sets a value that its peer includes in packets.</t>
  <t hangText='QUIC packet:'>
  A well-formed UDP payload that can be parsed by a QUIC receiver.</t>
</list></t>

<t>QUIC is a name, not an acronym.</t>

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

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

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

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

<t>QUIC versions are identified using a 32-bit unsigned number.</t>

<t>The version 0x00000000 is reserved to represent version negotiation.  This
version of the specification is identified by the number 0x00000001.</t>

<t>Other versions of QUIC might have different properties to this version.  The
properties of QUIC that are guaranteed to be consistent across all versions of
the protocol are described in <xref target="QUIC-INVARIANTS"/>.</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 GitHub wiki at
&lt;https://github.com/quicwg/base-drafts/wiki/QUIC-Versions&gt;.</t>

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

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

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

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

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

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

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

<t><list style="hanging">
  <t hangText='Header Form:'>
  The most significant bit (0x80) of octet 0 (the first octet) is set to 1 for
long headers.</t>
  <t hangText='Long Packet Type:'>
  The remaining seven bits of octet 0 contain the packet type.  This field can
indicate one of 128 packet types.  The types specified for this version are
listed in <xref target="long-packet-types"/>.</t>
  <t hangText='Version:'>
  The QUIC Version is a 32-bit field that follows the Type.  This field
indicates which version of QUIC is in use and determines how the rest of the
protocol fields are interpreted.</t>
  <t hangText='DCIL and SCIL:'>
  Octet 1 contains the lengths of the two connection ID fields that follow it.
These lengths are encoded as two 4-bit unsigned integers. The Destination
Connection ID Length (DCIL) field occupies the 4 high bits of the octet and
the Source Connection ID Length (SCIL) field occupies the 4 low bits of the
octet.  An encoded length of 0 indicates that the connection ID is also 0
octets in length.  Non-zero encoded lengths are increased by 3 to get the full
length of the connection ID, producing a length between 4 and 18 octets
inclusive.  For example, an octet with the value 0x50 describes an 8-octet
Destination Connection ID and a zero-length Source Connection ID.</t>
  <t hangText='Destination Connection ID:'>
  The Destination Connection ID field follows the connection ID lengths and is
either 0 octets in length or between 4 and 18 octets. <xref target="connection-id"/>
describes the use of this field in more detail.</t>
  <t hangText='Source Connection ID:'>
  The Source Connection ID field follows the Destination Connection ID and is
either 0 octets in length or between 4 and 18 octets. <xref target="connection-id"/>
describes the use of this field in more detail.</t>
  <t hangText='Payload Length:'>
  The length of the Payload field in octets, encoded as a variable-length
integer (<xref target="integer-encoding"/>).</t>
  <t hangText='Packet Number:'>
  The packet number field is 1, 2, or 4 octets long. The packet number has
confidentiality protection separate from packet protection, as described
in Section 5.6 of <xref target="QUIC-TLS"/>. The length of the packet number field is
encoded in the plaintext packet number. See <xref target="packet-numbers"/> for details.</t>
  <t hangText='Payload:'>
  The payload of the packet.</t>
</list></t>

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

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

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

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

<t>The end of the Payload field (which is also the end of the long header
packet) is determined by the value of the Payload Length field.
Senders can sometimes coalesce multiple packets into one UDP datagram.
See <xref target="packet-coalesce"/> for more details.</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|K|1|1|0|R R R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                Destination Connection ID (0..144)           ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                      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='Key Phase Bit:'>
  The second bit (0x40) 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>
</list></t>

<t>[[Editor’s Note: this section should be removed and the bit definitions
changed before this draft goes to the IESG.]]</t>

<t><list style="hanging">
  <t hangText='Third Bit:'>
  The third bit (0x20) of octet 0 is set to 1.</t>
</list></t>

<t>[[Editor’s Note: this section should be removed and the bit definitions
changed before this draft goes to the IESG.]]</t>

<t><list style="hanging">
  <t hangText='Fourth Bit:'>
  The fourth bit (0x10) of octet 0 is set to 1.</t>
</list></t>

<t>[[Editor’s Note: this section should be removed and the bit definitions
changed before this draft goes to the IESG.]]</t>

<t><list style="hanging">
  <t hangText='Google QUIC Demultipexing Bit:'>
  The fifth bit (0x8) of octet 0 is set to 0. This allows implementations of
Google QUIC to distinguish Google QUIC packets from short header packets sent
by a client because Google QUIC servers expect the connection ID to always be
present.
The special interpretation of this bit SHOULD be removed from this
specification when Google QUIC has finished transitioning to the new header
format.</t>
  <t hangText='Reserved:'>
  The sixth, seventh, and eighth bits (0x7) of octet 0 are reserved for
experimentation.</t>
  <t hangText='Destination Connection ID:'>
  The Destination Connection ID is a connection ID that is chosen by the
intended recipient of the packet.  See <xref target="connection-id"/> for more details.</t>
  <t hangText='Packet Number:'>
  The packet number field is 1, 2, or 4 octets long. The packet number has
confidentiality protection separate from packet protection, as described in
Section 5.6 of <xref target="QUIC-TLS"/>. The length of the packet number field is encoded
in the plaintext packet number. See <xref target="packet-numbers"/> for details.</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>

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

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

<t>A Version Negotiation packet is inherently not version-specific, and does not
use the long packet header (see <xref target="long-header"/>. Upon receipt by a client, it
will appear to be a packet using the long header, but will be identified as a
Version Negotiation packet based on the Version field having a value of 0.</t>

<t>The Version Negotiation packet is a response to a client packet that contains a
version that is not supported by the server, and is only sent by servers.</t>

<t>The layout of a Version Negotiation packet is:</t>

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

<t>The value in the Unused field is selected randomly by the server.</t>

<t>The Version field of a Version Negotiation packet MUST be set to 0x00000000.</t>

<t>The server MUST include the value from the Source Connection ID field of the
packet it receives in the Destination Connection ID field.  The value for Source
Connection ID MUST be copied from the Destination Connection ID of the received
packet, which is initially randomly selected by a client.  Echoing both
connection IDs gives clients some assurance that the server received the packet
and that the Version Negotiation packet was not generated by an off-path
attacker.</t>

<t>The remainder of the Version Negotiation packet is a list of 32-bit versions
which the server supports.</t>

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

<t>The Version Negotiation packet does not include the Packet Number and Length
fields present in other packets that use the long header form.  Consequently,
a Version Negotiation packet consumes an entire UDP datagram.</t>

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

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

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

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

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

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

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

<t>If the client has not previously received a Retry packet from the server, it
populates the Destination Connection ID field with a randomly selected value.
This MUST be at least 8 octets in length.  Until a packet is received from the
server, the client MUST use the same random value unless it also changes the
Source Connection ID (which effectively starts a new connection attempt).  The
randomized Destination Connection ID is used to determine packet protection
keys.</t>

<t>If the client received a Retry packet and is sending a second Initial packet,
then it sets the Destination Connection ID to the value from the Source
Connection ID in the Retry packet.  Changing Destination Connection ID also
results in a change to the keys used to protect the Initial packet.</t>

<t>The client populates the Source Connection ID field with a value of its choosing
and sets the SCIL field to match.</t>

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

<t>The payload of an Initial packet conveys a STREAM frame (or frames) for stream
0 containing a cryptographic handshake message.  The stream in this packet
always starts at an offset of 0 (see <xref target="stateless-retry"/>) and the complete
cryptographic handshake message MUST fit in a single packet (see <xref target="handshake"/>).</t>

<t>The payload of a UDP datagram carrying the Initial packet MUST be expanded to at
least 1200 octets (see <xref target="packetization"/>), by adding PADDING frames to the
Initial packet and/or by combining the Initial packet with a 0-RTT packet
(see <xref target="packet-coalesce"/>).</t>

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

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

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

<t>The server populates the Destination Connection ID with the connection ID that
the client included in the Source Connection ID of the Initial packet.  This
might be a zero-length value.</t>

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

<t>The Packet Number field of a Retry packet MUST be set to 0.  This value is
subsequently protected as normal. [[Editor’s Note: This isn’t ideal, because
it creates a “cheat” where the client assumes a value.  That’s a problem, so I’m
tempted to suggest that this include any value less than 2^30 so that normal
processing works - and can be properly exercised.]]</t>

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

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

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

<t>The payload of the Retry packet contains at least two frames. It MUST include a
STREAM frame on stream 0 with offset 0 containing the server’s cryptographic
stateless retry material. It MUST also include an ACK frame to acknowledge the
client’s Initial packet. It MAY additionally include PADDING frames. The next
STREAM frame sent by the server will also start at stream offset 0.</t>

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

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

<t>A server sends its cryptographic handshake in one or more Handshake packets in
response to an Initial packet if it does not send a Retry packet.  Once a client
has received a Handshake packet from a server, it uses Handshake packets to send
subsequent cryptographic handshake messages and acknowledgments to the server.</t>

<t>The Destination Connection ID field in a Handshake packet contains a connection
ID that is chosen by the recipient of the packet; the Source Connection ID
includes the connection ID that the sender of the packet wishes to use (see
<xref target="connection-id"/>).</t>

<t>The first Handshake packet sent by a server contains a packet number of 0.
Packet numbers are incremented normally for other Handshake packets.</t>

<t>Servers MUST NOT send more than three Handshake packets without receiving a
packet from a verified source address.  Source addresses can be verified
through an address validation token, receipt of the final cryptographic message
from the client, or by receiving a valid PATH_RESPONSE frame from the client.</t>

<t>If the server expects to generate more than three Handshake packets in response
to an Initial packet, it SHOULD include a PATH_CHALLENGE frame in each Handshake
packet that it sends.  After receiving at least one valid PATH_RESPONSE frame,
the server can send its remaining Handshake packets. Servers can instead perform
address validation using a Retry packet; this requires less state on the server,
but could involve additional computational effort depending on implementation
choices.</t>

<t>The payload of this packet contains STREAM frames and could contain PADDING,
ACK, PATH_CHALLENGE, or PATH_RESPONSE frames.  Handshake packets MAY contain
CONNECTION_CLOSE frames if the handshake is unsuccessful.</t>

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

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

<t>Packets protected with 0-RTT keys use a type value of 0x7C.  The connection ID
fields for a 0-RTT packet MUST match the values used in the Initial packet
(<xref target="packet-initial"/>).</t>

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

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

<t>The packet number field contains a packet number, which has additional
confidentiality protection that is applied after packet protection is applied
(see <xref target="QUIC-TLS"/> for details).  The underlying packet number increases with
each packet sent, see <xref target="packet-numbers"/> for details.</t>

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

</section>
<section anchor="packet-coalesce" title="Coalescing Packets">

<t>A sender can coalesce multiple QUIC packets (typically a Cryptographic Handshake
packet and a Protected packet) into one UDP datagram.  This can reduce the
number of UDP datagrams needed to send application data during the handshake and
immediately afterwards.  A packet with a short header does not include a length,
so it has to be the last packet included in a UDP datagram.</t>

<t>The sender MUST NOT coalesce QUIC packets belonging to different QUIC
connections into a single UDP datagram.</t>

<t>Every QUIC packet that is coalesced into a single UDP datagram is separate and
complete.  Though the values of some fields in the packet header might be
redundant, no fields are omitted.  The receiver of coalesced QUIC packets MUST
individually process each QUIC packet and separately acknowledge them, as if
they were received as the payload of different UDP datagrams.</t>

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

<t>A connection ID is used to ensure consistent routing of packets.  The long
header contains two connection IDs: the Destination Connection ID is chosen by
the recipient of the packet and is used to provide consistent routing; the
Source Connection ID is used to set the Destination Connection ID used by the
peer.</t>

<t>During the handshake, packets with the long header are used to establish the
connection ID that each endpoint uses.  Each endpoint uses the Source Connection
ID field to specify the connection ID that is used in the Destination Connection
ID field of packets being sent to them.  Upon receiving a packet, each endpoint
sets the Destination Connection ID it sends to match the value of the Source
Connection ID that they receive.</t>

<t>During the handshake, an endpoint might receive multiple packets with the long
header, and thus be given multiple opportunities to update the Destination
Connection ID it sends.  A client MUST only change the value it sends in the
Destination Connection ID in response to the first packet of each type it
receives from the server (Retry or Handshake); a server MUST set its value based
on the Initial packet.  Any additional changes are not permitted; if subsequent
packets of those types include a different Source Connection ID, they MUST be
discarded.  This avoids problems that might arise from stateless processing of
multiple Initial packets producing different connection IDs.</t>

<t>Short headers only include the Destination Connection ID and omit the explicit
length.  The length of the Destination Connection ID field is expected to be
known to endpoints.</t>

<t>Endpoints using a connection-ID based load balancer could agree with the load
balancer on a fixed or minimum length and on an encoding for connection IDs.
This fixed portion could encode an explicit length, which allows the entire
connection ID to vary in length and still be used by the load balancer.</t>

<t>The very first packet sent by a client includes a random value for Destination
Connection ID.  The same value MUST be used for all 0-RTT packets sent on that
connection (<xref target="packet-protected"/>).  This randomized value is used to determine
the handshake packet protection keys (see Section 5.3.2 of <xref target="QUIC-TLS"/>).</t>

<t>A Version Negotiation (<xref target="packet-version"/>) packet MUST use both connection IDs
selected by the client, swapped to ensure correct routing toward the client.</t>

<t>The connection ID can change over the lifetime of a connection, especially in
response to connection migration (<xref target="migration"/>). NEW_CONNECTION_ID frames
(<xref target="frame-new-connection-id"/>) are used to provide new connection ID values.</t>

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

<t>The packet number is an integer in the range 0 to 2^62-1. The value is used in
determining the cryptographic nonce for packet encryption.  Each endpoint
maintains a separate packet number for sending and receiving.  The packet number
for sending MUST start at zero for the first packet sent and MUST increase by at
least one after sending a packet.</t>

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

<t>In the QUIC long and short packet headers, the number of bits required to
represent the packet number are reduced by including only a variable number of
the least significant bits of the packet number.  One or two of the most
significant bits of the first octet determine how many bits of the packet
number are provided, as shown in <xref target="pn-encodings"/>.</t>

<texttable title="Packet Number Encodings for Packet Headers" anchor="pn-encodings">
      <ttcol align='left'>First octet pattern</ttcol>
      <ttcol align='left'>Encoded Length</ttcol>
      <ttcol align='left'>Bits Present</ttcol>
      <c>0b0xxxxxxx</c>
      <c>1 octet</c>
      <c>7</c>
      <c>0b10xxxxxx</c>
      <c>2</c>
      <c>14</c>
      <c>0b11xxxxxx</c>
      <c>4</c>
      <c>30</c>
</texttable>

<t>Note that these encodings are similar to those in <xref target="integer-encoding"/>, but
use different values.</t>

<t>The encoded packet number is protected as described in Section 5.6
<xref target="QUIC-TLS"/>. Protection of the packet number is removed prior to recovering
the full packet number. The full packet number is reconstructed at the
receiver based on the number of significant bits present, the content of those
bits, and the largest packet number received on a successfully authenticated
packet. Recovering the full packet number is necessary to successfully remove
packet protection.</t>

<t>Once packet number protection is removed, the packet number is decoded by
finding the packet number value that is closest to the next expected packet.
The next expected packet is the highest received packet number plus one.  For
example, if the highest successfully authenticated packet had a packet number of
0xaa82f30e, then a packet containing a 14-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 0x6b2d79 requires a packet number encoding
with 14 bits or more; whereas the 30-bit packet number encoding is needed to
send a packet with a number of 0x6bc107.</t>

<t>A Version Negotiation packet (<xref target="packet-version"/>) does not include a packet
number.  The Retry packet (<xref target="packet-retry"/>) has special rules for populating
the packet number field.</t>

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

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

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

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

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

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

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

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

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

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

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

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

<t>Hosts try to associate a packet with an existing connection. If the packet has
a Destination Connection ID corresponding to an existing connection, QUIC
processes that packet accordingly. Note that a NEW_CONNECTION_ID frame
(<xref target="frame-new-connection-id"/>) would associate more than one connection ID with a
connection.</t>

<t>If the Destination Connection ID is zero length and the packet matches the
address/port tuple of a connection where the host did not require connection
IDs, QUIC processes the packet as part of that connection. Endpoints MUST drop
packets with zero-length Destination Connection ID fields if they do not
correspond to a single connection.</t>

<section anchor="client-pkt-handling" title="Client Packet Handling">

<t>Valid packets sent to clients always include a Destination Connection ID that
matches the value the client selects.  Clients that choose to receive
zero-length connection IDs can use the address/port tuple to identify a
connection.  Packets that don’t match an existing connection MAY be discarded.</t>

<t>Due to packet reordering or loss, clients might receive packets for a connection
that are encrypted with a key it has not yet computed. Clients MAY drop these
packets, or MAY buffer them in anticipation of later packets that allow it to
compute the key.</t>

<t>If a client receives a packet that has an unsupported version, it MUST discard
that packet.</t>

</section>
<section anchor="server-pkt-handling" title="Server Packet Handling">

<t>If a server receives a packet that has an unsupported version and
sufficient length to be an Initial packet for some version supported
by the server, it SHOULD send a Version Negotiation packet as
described in <xref target="send-vn"/>. Servers MAY rate control these packets to
avoid storms of Version Negotiation packets.</t>

<t>The first packet for an unsupported version can use different semantics and
encodings for any version-specific field.  In particular, different packet
protection keys might be used for different versions.  Servers that do not
support a particular version are unlikely to be able to decrypt the content of
the packet.  Servers SHOULD NOT attempt to decode or decrypt a packet from an
unknown version, but instead send a Version Negotiation packet, provided that
the packet is sufficiently long.</t>

<t>Servers MUST drop other packets that contain unsupported versions.</t>

<t>Packets with a supported version, or no version field, are matched to
a connection as described in <xref target="packet-handling"/>. If not matched, the
server continues below.</t>

<t>If the packet is an Initial packet fully conforming with the
specification, the server proceeds with the handshake (<xref target="handshake"/>).
This commits the server to the version that the client selected.</t>

<t>If a server isn’t currently accepting any new connections, it SHOULD send a
Handshake packet containing a CONNECTION_CLOSE frame with error code
SERVER_BUSY.</t>

<t>If the packet is a 0-RTT packet, the server MAY buffer a limited
number of these packets in anticipation of a late-arriving Initial
Packet. Clients are forbidden from sending Handshake packets prior to
receiving a server response, so servers SHOULD ignore any such packets.</t>

<t>Servers MUST drop incoming packets under all other circumstances. They
SHOULD send a Stateless Reset (<xref target="stateless-reset"/>) if a connection ID
is present in the header.</t>

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

<t>Version negotiation ensures that client and server agree to a QUIC version
that is mutually supported. A server sends a Version Negotiation packet in
response to each packet that might initiate a new connection, see
<xref target="packet-handling"/> for details.</t>

<t>The size of the first packet sent by a client will determine whether a server
sends a Version Negotiation packet. Clients that support multiple QUIC
versions SHOULD pad their Initial packets to reflect the largest minimum
Initial packet size of all their versions. This ensures that that the server
responds if there are any mutually supported versions.</t>

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

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

<t>This system allows a server to process packets with unsupported versions without
retaining state.  Though either the Initial packet or the Version Negotiation
packet that is sent in response could be lost, the client will send new packets
until it successfully receives a response or it abandons the connection attempt.</t>

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

<t>When the client receives a Version Negotiation packet, it first checks that the
Destination and Source Connection ID fields match the Source and Destination
Connection ID fields in a packet that the client sent.  If this check fails, the
packet MUST be discarded.</t>

<t>Once the Version Negotiation packet is determined to be valid, the client then
selects an acceptable protocol version from the list provided by the server.
The client then attempts to create a connection using that version.  Though the
contents of the Initial packet the client sends might not change in
response to version negotiation, a client MUST increase the packet number it
uses on every packet it sends.  Packets MUST continue to use long headers and
MUST include the new negotiated protocol version.</t>

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

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

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

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

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

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

<t>The design of version negotiation permits a server to avoid maintaining state
for packets that it rejects in this fashion. The validation of version
negotiation (see <xref target="version-validation"/>) only validates the result of version
negotiation, which is the same no matter which reserved version was sent.
A server MAY therefore send different reserved version numbers in the Version
Negotiation Packet and in its transport parameters.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

   struct {
     enum { IPv4(4), IPv6(6), (15) } ipVersion;
     opaque ipAddress<4..2^8-1>;
     uint16 port;
     opaque connectionId<0..18>;
     opaque statelessResetToken[16];
   } PreferredAddress;
]]></artwork></figure>

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

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

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

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

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

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

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

<t><list style="hanging">
  <t hangText='initial_max_bidi_streams (0x0002):'>
  The initial maximum bidirectional streams parameter contains the initial
maximum number of application-owned bidirectional streams the peer may
initiate, encoded as an unsigned 16-bit integer.  If this parameter is absent
or zero, application-owned bidirectional streams cannot be created until a
MAX_STREAM_ID frame is sent.  Note that a value of 0 does not prevent the
cryptographic handshake stream (that is, stream 0) from being used. Setting
this parameter is equivalent to sending a MAX_STREAM_ID
(<xref target="frame-max-stream-id"/>) immediately after completing the handshake
containing the corresponding Stream ID. For example, a value of 0x05 would be
equivalent to receiving a MAX_STREAM_ID containing 20 when received by a
client or 17 when received by a server.</t>
  <t hangText='initial_max_uni_streams (0x0008):'>
  The initial maximum unidirectional streams parameter contains the initial
maximum number of application-owned unidirectional streams the peer may
initiate, encoded as an unsigned 16-bit integer.  If this parameter is absent
or zero, unidirectional streams cannot be created until a MAX_STREAM_ID frame
is sent.  Setting this parameter is equivalent to sending a MAX_STREAM_ID
(<xref target="frame-max-stream-id"/>) immediately after completing the handshake
containing the corresponding Stream ID. For example, a value of 0x05 would be
equivalent to receiving a MAX_STREAM_ID containing 18 when received by a
client or 19 when received by a server.</t>
  <t hangText='max_packet_size (0x0005):'>
  The maximum packet size parameter places a limit on the size of packets that
the endpoint is willing to receive, encoded as an unsigned 16-bit integer.
This indicates that packets larger than this limit will be dropped.  The
default for this parameter is the maximum permitted UDP payload of 65527.
Values below 1200 are invalid.  This limit only applies to protected packets
(<xref target="packet-protected"/>).</t>
  <t hangText='ack_delay_exponent (0x0007):'>
  An 8-bit unsigned integer value indicating an exponent used to decode the ACK
Delay field in the ACK frame, see <xref target="frame-ack"/>.  If this value is absent, a
default value of 3 is assumed (indicating a multiplier of 8).  The default
value is also used for ACK frames that are sent in Initial, Handshake, and
Retry packets.  Values above 20 are invalid.</t>
</list></t>

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

<t><list style="hanging">
  <t hangText='stateless_reset_token (0x0006):'>
  The Stateless Reset Token is used in verifying a stateless reset, see
<xref target="stateless-reset"/>.  This parameter is a sequence of 16 octets.</t>
  <t hangText='preferred_address (0x0004):'>
  The server’s Preferred Address is used to effect a change in server address at
the end of the handshake, as described in <xref target="preferred-address"/>.</t>
</list></t>

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

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

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

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

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

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

<t>The value of the server’s previous preferred_address MUST NOT be used when
establishing a new connection; rather, the client should wait to observe the
server’s new preferred_address value in the handshake.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</section>
</section>
<section anchor="migrate-validate" title="Path Validation">

<t>Path validation is used by an endpoint to verify reachability of a peer over a
specific path.  That is, it tests reachability between a specific local address
and a specific peer address, where an address is the two-tuple of IP address and
port.  Path validation tests that packets can be both sent to and received from
a peer.</t>

<t>Path validation is used during connection migration (see <xref target="migration"/> and
<xref target="preferred-address"/>) by the migrating endpoint to verify reachability of a
peer from a new local address. Path validation is also used by the peer to
verify that the migrating endpoint is able to receive packets sent to the its
new address.  That is, that the packets received from the migrating endpoint do
not carry a spoofed source address.</t>

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

<t>Path validation is not designed as a NAT traversal mechanism. Though the
mechanism described here might be effective for the creation of NAT bindings
that support NAT traversal, the expectation is that one or other peer is able to
receive packets without first having sent a packet on that path. Effective NAT
traversal needs additional synchronization mechanisms that are not provided
here.</t>

<t>An endpoint MAY bundle PATH_CHALLENGE and PATH_RESPONSE frames that are used for
path validation with other frames.  For instance, an endpoint may pad a packet
carrying a PATH_CHALLENGE for PMTU discovery, or an endpoint may bundle a
PATH_RESPONSE with its own PATH_CHALLENGE.</t>

<section anchor="initiation" title="Initiation">

<t>To initiate path validation, an endpoint sends a PATH_CHALLENGE frame containing
a random payload on the path to be validated.</t>

<t>An endpoint MAY send additional PATH_CHALLENGE frames to handle packet loss.  An
endpoint SHOULD NOT send a PATH_CHALLENGE more frequently than it would an
Initial packet, ensuring that connection migration is no more load on a new path
than establishing a new connection.</t>

<t>The endpoint MUST use fresh random data in every PATH_CHALLENGE frame so that it
can associate the peer’s response with the causative PATH_CHALLENGE.</t>

</section>
<section anchor="response" title="Response">

<t>On receiving a PATH_CHALLENGE frame, an endpoint MUST respond immediately by
echoing the data contained in the PATH_CHALLENGE frame in a PATH_RESPONSE frame,
with the following stipulation.  Since a PATH_CHALLENGE might be sent from a
spoofed address, an endpoint MAY limit the rate at which it sends PATH_RESPONSE
frames and MAY silently discard PATH_CHALLENGE frames that would cause it to
respond at a higher rate.</t>

<t>To ensure that packets can be both sent to and received from the peer, the
PATH_RESPONSE MUST be sent on the same path as the triggering PATH_CHALLENGE:
from the same local address on which the PATH_CHALLENGE was received, to the
same remote address from which the PATH_CHALLENGE was received.</t>

</section>
<section anchor="completion" title="Completion">

<t>A new address is considered valid when a PATH_RESPONSE frame is received
containing data that was sent in a previous PATH_CHALLENGE. Receipt of an
acknowledgment for a packet containing a PATH_CHALLENGE frame is not adequate
validation, since the acknowledgment can be spoofed by a malicious peer.</t>

<t>For path validation to be successful, a PATH_RESPONSE frame MUST be received
from the same remote address to which the corresponding PATH_CHALLENGE was
sent. If a PATH_RESPONSE frame is received from a different remote address than
the one to which the PATH_CHALLENGE was sent, path validation is considered to
have failed, even if the data matches that sent in the PATH_CHALLENGE.</t>

<t>Additionally, the PATH_RESPONSE frame MUST be received on the same local address
from which the corresponding PATH_CHALLENGE was sent.  If a PATH_RESPONSE frame
is received on a different local address than the one from which the
PATH_CHALLENGE was sent, path validation is considered to have failed, even if
the data matches that sent in the PATH_CHALLENGE.  Thus, the endpoint considers
the path to be valid when a PATH_RESPONSE frame is received on the same path
with the same payload as the PATH_CHALLENGE frame.</t>

</section>
<section anchor="abandonment" title="Abandonment">

<t>An endpoint SHOULD abandon path validation after sending some number of
PATH_CHALLENGE frames or after some time has passed.  When setting this timer,
implementations are cautioned that the new path could have a longer round-trip
time than the original.</t>

<t>Note that the endpoint might receive packets containing other frames on the new
path, but a PATH_RESPONSE frame with appropriate data is required for path
validation to succeed.</t>

<t>If path validation fails, the path is deemed unusable.  This does not
necessarily imply a failure of the connection - endpoints can continue sending
packets over other paths as appropriate.  If no paths are available, an endpoint
can wait for a new path to become available or close the connection.</t>

<t>A path validation might be abandoned for other reasons besides
failure. Primarily, this happens if a connection migration to a new path is
initiated while a path validation on the old path is in progress.</t>

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

<t>QUIC allows connections to survive changes to endpoint addresses (that is, IP
address and/or port), such as those caused by a endpoint migrating to a new
network.  This section describes the process by which an endpoint migrates to a
new address.</t>

<t>An endpoint MUST NOT initiate connection migration before the handshake is
finished and the endpoint has 1-RTT keys.</t>

<t>This document limits migration of connections to new client addresses, except as
described in <xref target="preferred-address"/>. Clients are responsible for initiating all
migrations.  Servers do not send non-probing packets (see <xref target="probing"/>) toward a
client address until it sees a non-probing packet from that address.  If a
client receives packets from an unknown server address, the client MAY discard
these packets.</t>

<section anchor="probing" title="Probing a New Path">

<t>An endpoint MAY probe for peer reachability from a new local address using path
validation <xref target="migrate-validate"/> prior to migrating the connection to the new
local address.  Failure of path validation simply means that the new path is not
usable for this connection.  Failure to validate a path does not cause the
connection to end unless there are no valid alternative paths available.</t>

<t>An endpoint uses a new connection ID for probes sent from a new local address,
see <xref target="migration-linkability"/> for further discussion.</t>

<t>Receiving a PATH_CHALLENGE frame from a peer indicates that the peer is probing
for reachability on a path. An endpoint sends a PATH_RESPONSE in response as per
<xref target="migrate-validate"/>.</t>

<t>PATH_CHALLENGE, PATH_RESPONSE, and PADDING frames are “probing frames”, and all
other frames are “non-probing frames”.  A packet containing only probing frames
is a “probing packet”, and a packet containing any other frame is a “non-probing
packet”.</t>

</section>
<section anchor="initiating-migration" title="Initiating Connection Migration">

<t>A endpoint can migrate a connection to a new local address by sending packets
containing frames other than probing frames from that address.</t>

<t>Each endpoint validates its peer’s address during connection establishment.
Therefore, a migrating endpoint can send to its peer knowing that the peer is
willing to receive at the peer’s current address. Thus an endpoint can migrate
to a new local address without first validating the peer’s address.</t>

<t>When migrating, the new path might not support the endpoint’s current sending
rate. Therefore, the endpoint resets its congestion controller, as described in
<xref target="migration-cc"/>.</t>

<t>Receiving acknowledgments for data sent on the new path serves as proof of the
peer’s reachability from the new address.  Note that since acknowledgments may
be received on any path, return reachability on the new path is not
established. To establish return reachability on the new path, an endpoint MAY
concurrently initiate path validation <xref target="migrate-validate"/> on the new path.</t>

</section>
<section anchor="migration-response" title="Responding to Connection Migration">

<t>Receiving a packet from a new peer address containing a non-probing frame
indicates that the peer has migrated to that address.</t>

<t>In response to such a packet, an endpoint MUST start sending subsequent packets
to the new peer address and MUST initiate path validation (<xref target="migrate-validate"/>)
to verify the peer’s ownership of the unvalidated address.</t>

<t>An endpoint MAY send data to an unvalidated peer address, but it MUST protect
against potential attacks as described in <xref target="address-spoofing"/> and
<xref target="on-path-spoofing"/>.  An endpoint MAY skip validation of a peer address if that
address has been seen recently.</t>

<t>An endpoint only changes the address that it sends packets to in response to the
highest-numbered non-probing packet. This ensures that an endpoint does not send
packets to an old peer address in the case that it receives reordered packets.</t>

<t>After changing the address to which it sends non-probing packets, an endpoint
could abandon any path validation for other addresses.</t>

<t>Receiving a packet from a new peer address might be the result of a NAT
rebinding at the peer.</t>

<t>After verifying a new client address, the server SHOULD send new address
validation tokens (<xref target="address-validation"/>) to the client.</t>

<section anchor="address-spoofing" title="Handling Address Spoofing by a Peer">

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

<t>As described in <xref target="migration-response"/>, an endpoint is required to validate a
peer’s new address to confirm the peer’s possession of the new address.  Until a
peer’s address is deemed valid, an endpoint MUST limit the rate at which it
sends data to this address.  The endpoint MUST NOT send more than a minimum
congestion window’s worth of data per estimated round-trip time (kMinimumWindow,
as defined in <xref target="QUIC-RECOVERY"/>).  In the absence of this limit, an endpoint
risks being used for a denial of service attack against an unsuspecting victim.
Note that since the endpoint will not have any round-trip time measurements to
this address, the estimate SHOULD be the default initial value (see
<xref target="QUIC-RECOVERY"/>).</t>

<t>If an endpoint skips validation of a peer address as described in
<xref target="migration-response"/>, it does not need to limit its sending rate.</t>

</section>
<section anchor="on-path-spoofing" title="Handling Address Spoofing by an On-path Attacker">

<t>An on-path attacker could cause a spurious connection migration by copying and
forwarding a packet with a spoofed address such that it arrives before the
original packet.  The packet with the spoofed address will be seen to come from
a migrating connection, and the original packet will be seen as a duplicate and
dropped. After a spurious migration, validation of the source address will fail
because the entity at the source address does not have the necessary
cryptographic keys to read or respond to the PATH_CHALLENGE frame that is sent
to it even if it wanted to.</t>

<t>To protect the connection from failing due to such a spurious migration, an
endpoint MUST revert to using the last validated peer address when validation of
a new peer address fails.</t>

<t>If an endpoint has no state about the last validated peer address, it MUST close
the connection silently by discarding all connection state. This results in new
packets on the connection being handled generically. For instance, an endpoint
MAY send a stateless reset in response to any further incoming packets.</t>

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

</section>
</section>
<section anchor="migration-cc" title="Loss Detection and Congestion Control">

<t>The capacity available on the new path might not be the same as the old path.
Packets sent on the old path SHOULD NOT contribute to congestion control or RTT
estimation for the new path.</t>

<t>On confirming a peer’s ownership of its new address, an endpoint SHOULD
immediately reset the congestion controller and round-trip time estimator for
the new path.</t>

<t>An endpoint MUST NOT return to the send rate used for the previous path unless
it is reasonably sure that the previous send rate is valid for the new path.
For instance, a change in the client’s port number is likely indicative of a
rebinding in a middlebox and not a complete change in path.  This determination
likely depends on heuristics, which could be imperfect; if the new path capacity
is significantly reduced, ultimately this relies on the congestion controller
responding to congestion signals and reducing send rates appropriately.</t>

<t>There may be apparent reordering at the receiver when an endpoint sends data and
probes from/to multiple addresses during the migration period, since the two
resulting paths may have different round-trip times.  A receiver of packets on
multiple paths will still send ACK frames covering all received packets.</t>

<t>While multiple paths might be used during connection migration, a single
congestion control context and a single loss recovery context (as described in
<xref target="QUIC-RECOVERY"/>) may be adequate.  A sender can make exceptions for probe
packets so that their loss detection is independent and does not unduly cause
the congestion controller to reduce its sending rate.  An endpoint might arm a
separate alarm when a PATH_CHALLENGE is sent, which is disarmed when the
corresponding PATH_RESPONSE is received.  If the alarm fires before the
PATH_RESPONSE is received, the endpoint might send a new PATH_CHALLENGE, and
restart the alarm for a longer period of time.</t>

</section>
<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.  An endpoint that moves between
networks might not wish to have their activity correlated by any entity other
than their peer. The NEW_CONNECTION_ID message can be sent to provide an
unlinkable connection ID for use in case a peer wishes to explicitly break
linkability between two points of network attachment.</t>

<t>An endpoint that does not require the use of a connection ID should not request
that its peer use a connection ID.  Such an endpoint does not need to provide
new connection IDs using the NEW_CONNECTION_ID frame.</t>

<t>An endpoint might need to send packets on multiple networks without receiving
any response from its peer.  To ensure that the endpoint is not linkable across
each of these changes, a new connection ID is needed for each network.  To
support this, multiple NEW_CONNECTION_ID messages are needed.  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>An endpoint that to break linkability upon changing networks MUST use a
previously unused connection ID provided by its peer.  Protection of packet
numbers ensures that packet numbers cannot be used to correlate connections.
Other properties of packets, such as timing and size, might be used to correlate
activity, but no explicit correlation can be used to link activity across paths.</t>

<t>Clients MAY change connection ID at any time based on implementation-specific
concerns.  For example, after a period of network inactivity NAT rebinding might
occur when the client begins sending data again.</t>

<t>A client might wish to reduce linkability by employing a new connection ID and
source UDP port when sending traffic after a period of inactivity.  Changing the
UDP port from which it sends packets at the same time might cause the packet to
appear as a connection migration. This ensures that the mechanisms that support
migration are exercised even for clients that don’t experience NAT rebindings or
genuine migrations.  Changing port number can cause a peer to reset its
congestion state (see <xref target="migration-cc"/>), so the port SHOULD only be changed
infrequently.</t>

<t>An endpoint that receives a successfully authenticated packet with a previously
unused connection ID MUST use the next available connection ID for any packets
it sends to that address.  To avoid changing connection IDs multiple times when
packets arrive out of order, endpoints MUST change only in response to a packet
that increases the largest received packet number.  Failing to do this could
allow for use of that connection ID to link activity on new paths.  There is no
need to move to a new connection ID if the address of a peer changes without
also changing the connection ID.</t>

</section>
</section>
<section anchor="preferred-address" title="Server’s Preferred Address">

<t>QUIC allows servers to accept connections on one IP address and attempt to
transfer these connections to a more preferred address shortly after the
handshake.  This is particularly useful when clients initially connect to an
address shared by multiple servers but would prefer to use a unicast address to
ensure connection stability. This section describes the protocol for migrating a
connection to a preferred server address.</t>

<t>Migrating a connection to a new server address mid-connection is left for future
work. If a client receives packets from a new server address not indicated by
the preferred_address transport parameter, the client SHOULD discard these
packets.</t>

<section anchor="communicating-a-preferred-address" title="Communicating A Preferred Address">

<t>A server conveys a preferred address by including the preferred_address
transport parameter in the TLS handshake.</t>

<t>Once the handshake is finished, the client SHOULD initiate path validation (see
<xref target="migrate-validate"/>) of the server’s preferred address using the connection ID
provided in the preferred_address transport parameter.</t>

<t>If path validation succeeds, the client SHOULD immediately begin sending all
future packets to the new server address using the new connection ID and
discontinue use of the old server address.  If path validation fails, the client
MUST continue sending all future packets to the server’s original IP address.</t>

</section>
<section anchor="responding-to-connection-migration" title="Responding to Connection Migration">

<t>A server might receive a packet addressed to its preferred IP address at any
time after the handshake is completed.  If this packet contains a PATH_CHALLENGE
frame, the server sends a PATH_RESPONSE frame as per <xref target="migrate-validate"/>, but
the server MUST continue sending all other packets from its original IP address.</t>

<t>The server SHOULD also initiate path validation of the client using its
preferred address and the address from which it received the client probe.  This
helps to guard against spurious migration initiated by an attacker.</t>

<t>Once the server has completed its path validation and has received a non-probing
packet with a new largest packet number on its preferred address, the server
begins sending to the client exclusively from its preferred IP address.  It
SHOULD drop packets for this connection received on the old IP address, but MAY
continue to process delayed packets.</t>

</section>
<section anchor="interaction-of-client-migration-and-preferred-address" title="Interaction of Client Migration and Preferred Address">

<t>A client might need to perform a connection migration before it has migrated to
the server’s preferred address.  In this case, the client SHOULD perform path
validation to both the original and preferred server address from the client’s
new address concurrently.</t>

<t>If path validation of the server’s preferred address succeeds, the client MUST
abandon validation of the original address and migrate to using the server’s
preferred address.  If path validation of the server’s preferred address fails,
but validation of the server’s original address succeeds, the client MAY migrate
to using the original address from the client’s new address.</t>

<t>If the connection to the server’s preferred address is not from the same client
address, the server MUST protect against potential attacks as described in
<xref target="address-spoofing"/> and <xref target="on-path-spoofing"/>.  In addition to intentional
simultaneous migration, this might also occur because the client’s access
network used a different NAT binding for the server’s preferred address.</t>

<t>Servers SHOULD initiate path validation to the client’s new address upon
receiving a probe packet from a different address.  Servers MUST NOT send more
than a minimum congestion window’s worth of non-probing packets to the new
address before path validation is complete.</t>

</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="symbols">
  <t>idle timeout (<xref target="idle-timeout"/>)</t>
  <t>immediate close (<xref target="immediate-close"/>)</t>
  <t>stateless reset (<xref target="stateless-reset"/>)</t>
</list></t>

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

<t>The closing and draining connection states exist to ensure that connections
close cleanly and that delayed or reordered packets are properly discarded.
These states SHOULD persist for three times the current Retransmission Timeout
(RTO) interval as defined in <xref target="QUIC-RECOVERY"/>.</t>

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

<t>In the closing state, only a packet containing a closing frame can be sent.  An
endpoint retains only enough information to generate a packet containing a
closing frame and to identify packets as belonging to the connection.  The
connection ID and QUIC version is sufficient information to identify packets for
a closing connection; an endpoint can discard all other connection state.  An
endpoint MAY retain packet protection keys for incoming packets to allow it to
read and process a closing frame.</t>

<t>The draining state is entered once an endpoint receives a signal that its peer
is closing or draining.  While otherwise identical to the closing state, an
endpoint in the draining state MUST NOT send any packets.  Retaining packet
protection keys is unnecessary once a connection is in the draining state.</t>

<t>An endpoint MAY transition from the closing period to the draining period if it
can confirm that its peer is also closing or draining.  Receiving a closing
frame is sufficient confirmation, as is receiving a stateless reset.  The
draining period SHOULD end when the closing period would have ended.  In other
words, the endpoint can use the same end time, but cease retransmission of the
closing packet.</t>

<t>Disposing of connection state prior to the end of the closing or draining period
could cause delayed or reordered packets to be handled poorly.  Endpoints that
have some alternative means to ensure that late-arriving packets on the
connection do not create QUIC state, such as those that are able to close the
UDP socket, MAY use an abbreviated draining period which can allow for faster
resource recovery.  Servers that retain an open socket for accepting new
connections SHOULD NOT exit the closing or draining period early.</t>

<t>Once the closing or draining period has ended, an endpoint SHOULD discard all
connection state.  This results in new packets on the connection being handled
generically.  For instance, an endpoint MAY send a stateless reset in response
to any further incoming packets.</t>

<t>The draining and closing periods do not apply when a stateless reset
(<xref target="stateless-reset"/>) is sent.</t>

<t>An endpoint is not expected to handle key updates when it is closing or
draining.  A key update might prevent the endpoint from moving from the closing
state to draining, but it otherwise has no impact.</t>

<t>An endpoint could receive packets from a new source address, indicating a client
connection migration (<xref target="migration"/>), while in the closing period. An endpoint
in the closing state MUST strictly limit the number of packets it sends to this
new address until the address is validated (see <xref target="migrate-validate"/>). A server
in the closing state MAY instead choose to discard packets received from a new
source address.</t>

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

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

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

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

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

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

<t><list style="hanging">
  <t hangText='Note:'>
  Allowing retransmission of a packet contradicts other advice in this document
that recommends the creation of new packet numbers for every packet.  Sending
new packet numbers is primarily of advantage to loss recovery and congestion
control, which are not expected to be relevant for a closed connection.
Retransmitting the final packet requires less state.</t>
</list></t>

<t>After receiving a closing frame, endpoints enter the draining state.  An
endpoint that receives a closing frame MAY send a single packet containing a
closing frame before entering the draining state, using a CONNECTION_CLOSE frame
and a NO_ERROR code if appropriate.  An endpoint MUST NOT send further packets,
which could result in a constant exchange of closing frames until the closing
period on either peer ended.</t>

<t>An immediate close can be used after an application protocol has arranged to
close a connection.  This might be after the application protocols negotiates a
graceful shutdown.  The application protocol exchanges whatever messages that
are needed to cause both endpoints to agree to close the connection, after which
the application requests that the connection be closed.  The application
protocol can use an APPLICATION_CLOSE message with an appropriate error code to
signal closure.</t>

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

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

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

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

<figure><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+
|0|K| Type (6)  |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Destination Connection ID (144)            ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                     Packet Number (8/16/32)                   |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        Random Octets (*)                    ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
+                                                               +
|                                                               |
+                   Stateless Reset Token (128)                 +
|                                                               |
+                                                               +
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t>A server generates a random 18-octet Destination Connection ID field.  For a
client that depends on the server including a connection ID, this will mean that
this value differs from previous packets.  Ths results in two problems:</t>

<t><list style="symbols">
  <t>The packet might not reach the client.  If the Destination Connection ID is
critical for routing toward the client, then this packet could be incorrectly
routed.  This causes the stateless reset to be ineffective in causing errors
to be quickly detected and recovered.  In this case, clients will need to rely
on other methods - such as timers - to detect that the connection has failed.</t>
  <t>The randomly generated connection ID can be used by entities other than the
client to identify this as a potential stateless reset.  A server that
occasionally uses different connection IDs might introduce some uncertainty
about this.</t>
</list></t>

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

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

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

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

<t>This stateless reset design is specific to QUIC version 1.  A server that
supports multiple versions of QUIC needs to generate a stateless reset that will
be accepted by clients that support any version that the server might support
(or might have supported prior to losing state).  Designers of new versions of
QUIC need to be aware of this and either reuse this design, or use a portion of
the packet other than the last 16 octets for carrying data.</t>

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

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

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

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

<t>A single static key can be used across all connections to the same endpoint by
generating the proof using a second iteration of a preimage-resistant function
that takes three inputs: the static key, the server’s connection ID (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 use a
zero-length connection ID.</t>

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

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

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

<t>As described in <xref target="frames"/>, packets contain one or more frames. This section
describes the format and semantics of the core QUIC frame types.</t>

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

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

<t>The QUIC variable-length integer encoding reserves the two most significant bits
of the first octet to encode the base 2 logarithm of the integer encoding length
in octets.  The integer value is encoded on the remaining bits, in network byte
order.</t>

<t>This means that integers are encoded on 1, 2, 4, or 8 octets and can encode 6,
14, 30, or 62 bit values respectively.  <xref target="integer-summary"/> summarizes the
encoding properties.</t>

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

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

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

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

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

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

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

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

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

<t>An endpoint that receives a RST_STREAM frame for a send-only stream MUST
terminate the connection with error PROTOCOL_VIOLATION.</t>

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

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

<t>The fields are:</t>

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

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

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

<t>If there are open streams that haven’t been explicitly closed, they are
implicitly closed when the connection is closed.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>An endpoint that receives a MAX_STREAM_DATA frame for a receive-only stream
MUST terminate the connection with error PROTOCOL_VIOLATION.</t>

<t>An endpoint that receives a MAX_STREAM_DATA frame for a send-only stream
it has not opened MUST terminate the connection with error PROTOCOL_VIOLATION.</t>

<t>Note that an endpoint may legally receive a MAX_STREAM_DATA frame on a
bidirectional stream it has not opened.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The receiver of a PING frame simply needs to acknowledge the packet containing
this frame.</t>

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

<t>A connection will time out if no packets are sent or received for a period
longer than the time specified in the idle_timeout transport parameter (see
<xref target="termination"/>).  However, state in middleboxes might time out earlier than
that.  Though REQ-5 in <xref target="RFC4787"/> recommends a 2 minute timeout interval,
experience shows that sending packets every 15 to 30 seconds is necessary to
prevent the majority of middleboxes from losing state for UDP flows.</t>

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

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

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

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

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

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

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

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

<t>An endpoint that receives a STREAM_BLOCKED frame for a send-only stream MUST
terminate the connection with error PROTOCOL_VIOLATION.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>The fields are:</t>

<t><list style="hanging">
  <t hangText='Sequence:'>
  A variable-length integer.  This value starts at 0 and increases by 1 for each
connection ID that is provided by the server.  The connection ID that is
assigned during the handshake is assumed to have a sequence of -1.  That is,
the value selected during the handshake comes immediately before the first
value that a server can send.</t>
  <t hangText='Length:'>
  An 8-bit unsigned integer containing the length of the connection ID.  Values
less than 4 and greater than 18 are invalid and MUST be treated as a
connection error of type PROTOCOL_VIOLATION.</t>
  <t hangText='Connection ID:'>
  A connection ID of the specified length.</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>

<t>An endpoint MUST NOT send this frame if it currently requires that its peer send
packets with a zero-length Destination Connection ID.  Changing the length of a
connection ID to or from zero-length makes it difficult to identify when the
value of the connection ID changed.  An endpoint that is sending packets with a
zero-length Destination Connection ID MUST treat receipt of a NEW_CONNECTION_ID
frame as a connection error of type PROTOCOL_VIOLATION.</t>

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

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

<t>Receipt of a STOP_SENDING frame is only valid for a send stream that exists and
is not in the “Ready” state (see <xref target="stream-send-states"/>).  Receiving a
STOP_SENDING frame for a send stream that is “Ready” or non-existent MUST be
treated as a connection error of type PROTOCOL_VIOLATION.  An endpoint that
receives a STOP_SENDING frame for a receive-only stream MUST terminate the
connection with error PROTOCOL_VIOLATION.</t>

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

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

<t>The fields are:</t>

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

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

<t>Receivers send ACK frames (type=0x0d) to inform senders which packets they have
received and processed. The ACK frame contains any number of ACK blocks.
ACK blocks are ranges of acknowledged packets.</t>

<t>QUIC acknowledgements are irrevocable.  Once acknowledged, a packet remains
acknowledged, even if it does not appear in a future ACK frame.  This is unlike
TCP SACKs (<xref target="RFC2018"/>).</t>

<t>A client MUST NOT acknowledge Retry packets.  Retry packets include the packet
number from the Initial packet it responds to.  Version Negotiation packets
cannot be acknowledged because they do not contain a packet number.  Rather than
relying on ACK frames, these packets are implicitly acknowledged by the next
Initial packet sent by the client.</t>

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

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

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

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

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

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

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

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

<t>Each ACK Block acknowledges a contiguous range of packets by indicating the
number of acknowledged packets that precede the largest packet number in that
block.  A value of zero indicates that only the largest packet number is
acknowledged.  Larger ACK Block values indicate a larger range, with
corresponding lower values for the smallest packet number in the range.  Thus,
given a largest packet number for the ACK, the smallest value is determined by
the formula:</t>

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

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

<t>The largest value for the First ACK Block is determined by the Largest
Acknowledged field; the largest for Additional ACK Blocks is determined by
cumulatively subtracting the size of all preceding ACK Blocks and Gaps.</t>

<t>Each Gap indicates a range of packets that are not being acknowledged.  The
number of packets in the gap is one higher than the encoded value of the Gap
Field.</t>

<t>The value of the Gap field establishes the largest packet number value for the
ACK block that follows the gap using the following formula:</t>

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

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

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

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

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

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

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

<t>Because ACK frames are not sent in response to ACK-only packets, a receiver that
is only sending ACK frames will only receive acknowledgements for its packets
if the sender includes them in packets with non-ACK frames.  A sender SHOULD
bundle ACK frames with other frames when possible.</t>

<t>To limit receiver state or the size of ACK frames, a receiver MAY limit the
number of ACK blocks it sends.  A receiver can do this even without receiving
acknowledgment of its ACK frames, with the knowledge this could cause the sender
to unnecessarily retransmit some data.  Standard QUIC <xref target="QUIC-RECOVERY"/>
algorithms declare packets lost after sufficiently newer packets are
acknowledged.  Therefore, the receiver SHOULD repeatedly acknowledge newly
received packets in preference to packets received in the past.</t>

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

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

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

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

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

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

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

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

</section>
</section>
<section anchor="frame-path-challenge" title="PATH_CHALLENGE Frame">

<t>Endpoints can use PATH_CHALLENGE frames (type=0x0e) to check reachability to the
peer and for path validation during connection establishment and connection
migration.</t>

<t>PATH_CHALLENGE frames contain an 8-byte payload.</t>

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

]]></artwork></figure>

<t><list style="hanging">
  <t hangText='Data:'>
  This 8-byte field contains arbitrary data.</t>
</list></t>

<t>A PATH_CHALLENGE frame containing 8 octets that are hard to guess is sufficient
to ensure that it is easier to receive the packet than it is to guess the value
correctly.</t>

<t>The recipient of this frame MUST generate a PATH_RESPONSE frame
(<xref target="frame-path-response"/>) containing the same Data.</t>

</section>
<section anchor="frame-path-response" title="PATH_RESPONSE Frame">

<t>The PATH_RESPONSE frame (type=0x0f) is sent in response to a PATH_CHALLENGE
frame.  Its format is identical to the PATH_CHALLENGE frame
(<xref target="frame-path-challenge"/>).</t>

<t>If the content of a PATH_RESPONSE frame does not match the content of a
PATH_CHALLENGE frame previously sent by the endpoint, the endpoint MAY generate
a connection error of type UNSOLICITED_PATH_RESPONSE.</t>

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

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

<t><list style="symbols">
  <t>The OFF bit (0x04) in the frame type is set to indicate that there is an
Offset field present.  When set to 1, the Offset field is present; when set to
0, the Offset field is absent and the Stream Data starts at an offset of 0
(that is, the frame contains the first octets of the stream, or the end of a
stream that includes no data).</t>
  <t>The LEN bit (0x02) in the frame type is set to indicate that there is a Length
field present.  If this bit is set to 0, the Length field is absent and the
Stream Data field extends to the end of the packet.  If this bit is set to 1,
the Length field is present.</t>
  <t>The FIN bit (0x01) of the frame type is set only on frames that contain the
final offset of the stream.  Setting this bit indicates that the frame
marks the end of the stream.</t>
</list></t>

<t>An endpoint that receives a STREAM frame for a send-only stream MUST terminate
the connection with error PROTOCOL_VIOLATION.</t>

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

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

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

<t><list style="hanging">
  <t hangText='Stream ID:'>
  A variable-length integer indicating the stream ID of the stream (see
<xref target="stream-id"/>).</t>
  <t hangText='Offset:'>
  A variable-length integer specifying the byte offset in the stream for the
data in this STREAM frame.  This field is present when the OFF bit is set to
1.  When the Offset field is absent, the offset is 0.</t>
  <t hangText='Length:'>
  A variable-length integer specifying the length of the Stream Data field in
this STREAM frame.  This field is present when the LEN bit is set to 1.  When
the LEN bit is set to 0, the Stream Data field consumes all the remaining
octets in the packet.</t>
  <t hangText='Stream Data:'>
  The bytes from the designated stream to be delivered.</t>
</list></t>

<t>When a Stream Data field has a length of 0, the offset in the STREAM frame is
the offset of the next byte that would be sent.</t>

<t>The first byte in the stream has an offset of 0.  The largest offset delivered
on a stream - the sum of the re-constructed offset and data length - MUST be
less than 2^62.</t>

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

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

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

<t>A sender bundles one or more frames in a 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 knowledge about application sending behavior or
heuristics to determine whether and for how long to wait.  This waiting period
is an implementation decision, and an implementation should be careful to delay
conservatively, since any delay is likely to increase application-visible
latency.</t>

<section anchor="packet-processing-and-acknowledgment" title="Packet Processing and Acknowledgment">

<t>A packet MUST NOT be acknowledged until packet protection has been successfully
removed and all frames contained in the packet have been processed.  Any stream
state transitions triggered by the frame MUST have occurred.  For STREAM frames,
this means the data has been enqueued in preparation to be received by the
application protocol, but it does not require that data is delivered and
consumed.</t>

<t>Once the packet has been fully processed, a receiver acknowledges receipt by
sending one or more ACK frames containing the packet number of the received
packet.  To avoid creating an indefinite feedback loop, an endpoint MUST NOT
send an ACK frame in response to a packet containing only ACK or PADDING frames,
even if there are packet gaps which precede the received packet.  The endpoint
MUST acknowledge packets containing only ACK or PADDING frames in the next ACK
frame that it sends.</t>

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

</section>
<section anchor="retransmission-of-information" title="Retransmission of Information">

<t>QUIC packets that are determined to be lost are not retransmitted whole. The
same applies to the frames that are contained within lost packets. Instead, the
information that might be carried in frames is sent again in new frames as
needed.</t>

<t>New frames and packets are used to carry information that is determined to have
been lost.  In general, information is sent again when a packet containing that
information is determined to be lost and sending ceases when a packet
containing that information is acknowledged.</t>

<t><list style="symbols">
  <t>Application data sent in STREAM frames is retransmitted in new STREAM frames
unless the endpoint has sent a RST_STREAM for that stream.  Once an endpoint
sends a RST_STREAM frame, no further STREAM frames are needed.</t>
  <t>The most recent set of acknowledgments are sent in ACK frames.  An ACK frame
SHOULD contain all unacknowledged acknowledgments, as described in
<xref target="sending-ack-frames"/>.</t>
  <t>Cancellation of stream transmission, as carried in a RST_STREAM frame, is
sent until acknowledged or until all stream data is acknowledged by the peer
(that is, either the “Reset Recvd” or “Data Recvd” state is reached on the
send stream). The content of a RST_STREAM frame MUST NOT change when it is
sent again.</t>
  <t>Similarly, a request to cancel stream transmission, as encoded in a
STOP_SENDING frame, is sent until the receive stream enters either a “Data
Recvd” or “Reset Recvd” state, see <xref target="solicited-state-transitions"/>.</t>
  <t>Connection close signals, including those that use CONNECTION_CLOSE and
APPLICATION_CLOSE frames, are not sent again when packet loss is detected, but
as described in <xref target="termination"/>.</t>
  <t>The current connection maximum data is sent in MAX_DATA frames. An updated
value is sent in a MAX_DATA frame if the packet containing the most recently
sent MAX_DATA frame is declared lost, or when the endpoint decides to update
the limit.  Care is necessary to avoid sending this frame too often as the
limit can increase frequently and cause an unnecessarily large number of
MAX_DATA frames to be sent.</t>
  <t>The current maximum stream data offset is sent in MAX_STREAM_DATA frames.
Like MAX_DATA, an updated value is sent when the packet containing
the most recent MAX_STREAM_DATA frame for a stream is lost or when the limit
is updated, with care taken to prevent the frame from being sent too often. An
endpoint SHOULD stop sending MAX_STREAM_DATA frames when the receive stream
enters a “Size Known” state.</t>
  <t>The maximum stream ID for a stream of a given type is sent in MAX_STREAM_ID
frames.  Like MAX_DATA, an updated value is sent when a packet containing the
most recent MAX_STREAM_ID for a stream type frame is declared lost or when
the limit is updated, with care taken to prevent the frame from being sent
too often.</t>
  <t>Blocked signals are carried in BLOCKED, STREAM_BLOCKED, and STREAM_ID_BLOCKED
frames. BLOCKED streams have connection scope, STREAM_BLOCKED frames have
stream scope, and STREAM_ID_BLOCKED frames are scoped to a specific stream
type. New frames are sent if packets containing the most recent frame for a
scope is lost, but only while the endpoint is blocked on the corresponding
limit. These frames always include the limit that is causing blocking at the
time that they are transmitted.</t>
  <t>A liveness or path validation check using PATH_CHALLENGE frames is sent
periodically until a matching PATH_RESPONSE frame is received or until there
is no remaining need for liveness or path validation checking. PATH_CHALLENGE
frames include a different payload each time they are sent.</t>
  <t>Responses to path validation using PATH_RESPONSE frames are sent just once.
A new PATH_CHALLENGE frame will be sent if another PATH_RESPONSE frame is
needed.</t>
  <t>New connection IDs are sent in NEW_CONNECTION_ID frames and retransmitted if
the packet containing them is lost.</t>
  <t>PADDING frames contain no information, so lost PADDING frames do not require
repair.</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>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t><list style="symbols">
  <t>Set the IPv4 Don’t Fragment (DF) bit on a small proportion of packets, so that
most invalid ICMP messages arrive when there are no DF packets outstanding, and
can therefore be identified as spurious.</t>
  <t>Store additional information from the IP or UDP headers from DF packets (for
example, the IP ID or UDP checksum) to further authenticate incoming Datagram
Too Big messages.</t>
  <t>Any reduction in PMTU due to a report contained in an ICMP packet is
provisional until QUIC’s loss detection algorithm determines that the packet is
actually lost.</t>
</list></t>

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

<t>The PADDING frame provides a useful option for PMTU probe packets. PADDING
frames generate acknowledgements, but they need not be delivered reliably. As a
result, the loss of PADDING frames in probe packets does not require
delay-inducing retransmission. However, PADDING frames do consume congestion
window, which may delay the transmission of subsequent application data.</t>

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

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

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

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

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

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

<t>Stream offsets allow for the octets on a stream to be placed in order.  An
endpoint MUST be capable of delivering data received on a stream in order.
Implementations MAY choose to offer the ability to deliver data out of order.
There is no means of ensuring ordering between octets on different streams.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Unidirectional streams use the applicable state machine directly.  Bidirectional
streams use both state machines.  For the most part, the use of these state
machines is the same whether the stream is unidirectional or bidirectional.  The
conditions for opening a stream are slightly more complex for a bidirectional
stream because the opening of either send or receive sides causes the stream
to open in both directions.</t>

<t>An endpoint can open streams up to its maximum stream limit in any order,
however endpoints SHOULD open the send side of streams for each type in order.</t>

<t><list style="hanging">
  <t hangText='Note:'>
  These states are largely informative.  This document uses stream states to
describe rules for when and how different types of frames can be sent and the
reactions that are expected when different types of frames are received.
Though these state machines are intended to be useful in implementing QUIC,
these states aren’t intended to constrain implementations.  An implementation
can define a different state machine as long as its behavior is consistent
with an implementation that implements these states.</t>
</list></t>

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

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

<figure title="States for Send Streams" anchor="fig-stream-send-states"><artwork><![CDATA[
       o
       | Create Stream (Sending)
       | Create Bidirectional Stream (Receiving)
       v
   +-------+
   | Ready | Send RST_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Send STREAM /             |
       |      STREAM_BLOCKED       |
       v                           |
   +-------+                       |
   | Send  | Send RST_STREAM       |
   |       |---------------------->|
   +-------+                       |
       |                           |
       | Send STREAM + FIN         |
       v                           v
   +-------+                   +-------+
   | Data  | Send RST_STREAM   | Reset |
   | Sent  +------------------>| Sent  |
   +-------+                   +-------+
       |                           |
       | Recv All ACKs             | Recv ACK
       v                           v
   +-------+                   +-------+
   | Data  |                   | Reset |
   | Recvd |                   | Recvd |
   +-------+                   +-------+
]]></artwork></figure>

<t>The sending part of stream that the endpoint initiates (types 0 and 2 for
clients, 1 and 3 for servers) is opened by the application or application
protocol.  The “Ready” state represents a newly created stream that is able to
accept data from the application.  Stream data might be buffered in this state
in preparation for sending.</t>

<t>The sending part of a bidirectional stream initiated by a peer (type 0 for a
server, type 1 for a client) enters the “Ready” state if the receiving part
enters the “Recv” state.</t>

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

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

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

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

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

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

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

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

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

<figure title="States for Receive Streams" anchor="fig-stream-recv-states"><artwork><![CDATA[
       o
       | Recv STREAM / STREAM_BLOCKED / RST_STREAM
       | Create Bidirectional Stream (Sending)
       | Recv MAX_STREAM_DATA
       v
   +-------+
   | Recv  | Recv RST_STREAM
   |       |-----------------------.
   +-------+                       |
       |                           |
       | Recv STREAM + FIN         |
       v                           |
   +-------+                       |
   | Size  | Recv RST_STREAM       |
   | Known +---------------------->|
   +-------+                       |
       |                           |
       | Recv All Data             |
       v                           v
   +-------+                   +-------+
   | Data  | Recv RST_STREAM   | Reset |
   | Recvd +<-- (optional) --->| Recvd |
   +-------+                   +-------+
       |                           |
       | App Read All Data         | App Read RST
       v                           v
   +-------+                   +-------+
   | Data  |                   | Reset |
   | Read  |                   | Read  |
   +-------+                   +-------+
]]></artwork></figure>

<t>The receiving part of a stream initiated by a peer (types 1 and 3 for a client,
or 0 and 2 for a server) are created when the first STREAM, STREAM_BLOCKED,
RST_STREAM, or MAX_STREAM_DATA (bidirectional only, see below) is received for
that stream.  The initial state for a receive stream is “Recv”.  Receiving a
RST_STREAM frame causes the receive stream to immediately transition to the
“Reset Recvd”.</t>

<t>The receive stream enters the “Recv” state when the sending part of a
bidirectional stream initiated by the endpoint (type 0 for a client, type 1 for
a server) enters the “Ready” state.</t>

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

<t>In the “Recv” state, the endpoint receives STREAM and STREAM_BLOCKED frames.
Incoming data is buffered and can be reassembled into the correct order for
delivery to the application.  As data is consumed by the application and buffer
space becomes available, the endpoint sends MAX_STREAM_DATA frames to allow the
peer to send more data.</t>

<t>When a STREAM frame with a FIN bit is received, the final offset (see
<xref target="final-offset"/>) is known.  The receive stream enters the “Size Known” state.
In this state, the endpoint no longer needs to send MAX_STREAM_DATA frames, it
only receives any retransmissions of stream data.</t>

<t>Once all data for the stream has been received, the receive stream enters the
“Data Recvd” state.  This might happen as a result of receiving the same STREAM
frame that causes the transition to “Size Known”.  In this state, the endpoint
has all stream data.  Any STREAM or STREAM_BLOCKED frames it receives for the
stream can be discarded.</t>

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

<t>Receiving a RST_STREAM frame in the “Recv” or “Size Known” states causes the
stream to enter the “Reset Recvd” state.  This might cause the delivery of
stream data to the application to be interrupted.</t>

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

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

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

<t>The sender of a stream sends just three frame types that affect the state of a
stream at either sender or receiver: STREAM (<xref target="frame-stream"/>), STREAM_BLOCKED
(<xref target="frame-stream-blocked"/>), and RST_STREAM (<xref target="frame-rst-stream"/>).</t>

<t>A sender MUST NOT send any of these frames from a terminal state (“Data Recvd”
or “Reset Recvd”).  A sender MUST NOT send STREAM or STREAM_BLOCKED after
sending a RST_STREAM; that is, in the “Reset Sent” state in addition to the
terminal states.  A receiver could receive any of these frames in any state, but
only due to the possibility of delayed delivery of packets carrying them.</t>

<t>The receiver of a stream sends MAX_STREAM_DATA (<xref target="frame-max-stream-data"/>) and
STOP_SENDING frames (<xref target="frame-stop-sending"/>).</t>

<t>The receiver only sends MAX_STREAM_DATA in the “Recv” state.  A receiver can
send STOP_SENDING in any state where it has not received a RST_STREAM frame;
that is states other than “Reset Recvd” or “Reset Read”.  However there is
little value in sending a STOP_SENDING frame after all stream data has been
received in the “Data Recvd” state.  A sender could receive these frames in any
state as a result of delayed delivery of packets.</t>

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

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

<t><xref target="stream-bidi-mapping"/> shows a more complex mapping of bidirectional stream
states that loosely correspond to the stream states in HTTP/2
<xref target="HTTP2"/>.  This shows that multiple states on send or receive streams
are mapped to the same composite state.  Note that this is just one possibility
for such a mapping; this mapping requires that data is acknowledged before the
transition to a “closed” or “half-closed” state.</t>

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

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

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

<t>If an endpoint is no longer interested in the data it is receiving on a stream,
it MAY send a STOP_SENDING frame identifying that stream to prompt closure of
the stream in the opposite direction.  This typically indicates that the
receiving application is no longer reading data it receives from the stream, but
is not a guarantee that incoming data will be ignored.</t>

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

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

<t>STOP_SENDING SHOULD only be sent for a receive stream that has not been
reset. STOP_SENDING is most useful for streams in the “Recv” or “Size Known”
states.</t>

<t>An endpoint is expected to send another STOP_SENDING frame if a packet
containing a previous STOP_SENDING is lost.  However, once either all stream
data or a RST_STREAM frame has been received for the stream - that is, the
stream is in any state other than “Recv” or “Size Known” - sending a
STOP_SENDING frame is unnecessary.</t>

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

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

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

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

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

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

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

<t>When new data is to be sent on a stream, a sender MUST set the encapsulating
STREAM frame’s offset field to the stream offset of the first byte of this new
data.  The first octet of data on a stream has an offset of 0.  An endpoint is
expected to send every stream octet.  The largest offset delivered on a stream
MUST be less than 2^62.</t>

<t>QUIC makes no specific allowances for partial reliability or delivery of stream
data out of order.  Endpoints MUST be able to deliver stream data to an
application as an ordered byte-stream.  Delivering an ordered byte-stream
requires that an endpoint buffer any data that is received out of order, up to
the advertised flow control limit.</t>

<t>An endpoint could receive the same octets multiple times; octets that have
already been received can be discarded.  The value for a given octet MUST NOT
change if it is sent multiple times; an endpoint MAY treat receipt of a changed
octet as a connection error of type PROTOCOL_VIOLATION.</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<t>Connection flow control is a limit to the total bytes of stream data sent in
STREAM frames on all streams except stream 0.  A receiver advertises credit for
a connection by sending a MAX_DATA frame.  A receiver maintains a cumulative sum
of bytes received on all contributing 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 round-trip time estimate and the rate at
which the receiving application consumes data, similar to common TCP
implementations.</t>

</section>
<section anchor="handshake-exemption" title="Handshake Exemption">

<t>During the initial handshake, an endpoint could need to send a larger message on
stream 0 than would ordinarily be permitted by the peer’s initial stream flow
control window. Since MAX_STREAM_DATA frames are not permitted in these early
packets, the peer cannot provide additional flow control window in order to
complete the handshake.</t>

<t>Endpoints MAY exceed the flow control limits on stream 0 prior to the completion
of the cryptographic handshake.  (That is, in Initial, Retry, and Handshake
packets.)  However, once the handshake is complete, endpoints MUST NOT send
additional data beyond the peer’s permitted offset.  If the amount of data sent
during the handshake exceeds the peer’s maximum offset, the endpoint cannot send
additional data on stream 0 until the peer has sent a MAX_STREAM_DATA frame
indicating a larger maximum offset.</t>

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

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

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

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

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

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

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

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

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

<t>An endpoint will know the final offset for a stream when the receive stream
enters the “Size Known” or “Reset Recvd” state.</t>

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

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

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

<t>An endpoint that detects an error SHOULD signal the existence of that error to
its peer.  Both transport-level and application-level errors can affect an
entire connection (see <xref target="connection-errors"/>), while only application-level
errors can be isolated to a single stream (see <xref target="stream-errors"/>).</t>

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

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

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

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

<t>Application protocols can signal application-specific protocol errors using the
APPLICATION_CLOSE frame.  Errors that are specific to the transport, including
all those described in this document, are carried in a CONNECTION_CLOSE frame.
Other than the type of error code they carry, these frames are identical in
format and semantics.</t>

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

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

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

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

<t>If an application-level 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>Other than STOPPING (<xref target="solicited-state-transitions"/>), RST_STREAM MUST be
instigated by the application and MUST carry an application error code.
Resetting a stream without knowledge of the application protocol could cause the
protocol to enter an unrecoverable state.  Application protocols might require
certain streams to be reliably delivered in order to guarantee consistent state
between endpoints.</t>

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

<t>QUIC error codes are 16-bit unsigned integers.</t>

<t>This section lists the defined QUIC transport error codes that may be used in a
CONNECTION_CLOSE frame.  These errors apply to the entire connection.</t>

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

<t>Codes for errors occuring when TLS is used for the crypto handshake are defined
in Section 11 of <xref target="QUIC-TLS"/>. See <xref target="iana-error-codes"/> for details of
registering new error codes.</t>

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

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

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

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

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

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

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

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

</section>
<section anchor="optimistic-ack-attack" title="Optimistic ACK Attack">

<t>An endpoint that acknowledges packets it has not received might cause a
congestion controller to permit sending at rates beyond what the network
supports.  An endpoint MAY skip packet numbers when sending packets to detect
this behavior.  An endpoint can then immediately close the connection with a
connection error of type PROTOCOL_VIOLATION (see <xref target="immediate-close"/>).</t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

<texttable title="Initial QUIC Transport Parameters Entries" anchor="iana-tp-table">
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Parameter Name</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>0x0000</c>
      <c>initial_max_stream_data</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0001</c>
      <c>initial_max_data</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0002</c>
      <c>initial_max_bidi_streams</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>preferred_address</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0005</c>
      <c>max_packet_size</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0006</c>
      <c>stateless_reset_token</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0007</c>
      <c>ack_delay_exponent</c>
      <c><xref target="transport-parameter-definitions"/></c>
      <c>0x0008</c>
      <c>initial_max_uni_streams</c>
      <c><xref target="transport-parameter-definitions"/></c>
</texttable>

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

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

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

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

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

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

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

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-RECOVERY" >
  <front>
    <title>QUIC Loss Detection and Congestion Control</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Fastly</organization>
    </author>
    <author initials="I." surname="Swett" fullname="Ian Swett" role="editor">
      <organization>Google</organization>
    </author>
    <date year="2018" month="May" day="22"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-recovery-12"/>
</reference>
<reference anchor="QUIC-TLS" >
  <front>
    <title>Using Transport Layer Security (TLS) to Secure QUIC</title>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <author initials="S." surname="Turner" fullname="Sean Turner" role="editor">
      <organization>sn3rd</organization>
    </author>
    <date year="2018" month="May" day="22"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-tls-12"/>
</reference>




<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



<reference anchor="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="RFC4086" target='https://www.rfc-editor.org/info/rfc4086'>
<front>
<title>Randomness Requirements for Security</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<author initials='J.' surname='Schiller' fullname='J. Schiller'><organization /></author>
<author initials='S.' surname='Crocker' fullname='S. Crocker'><organization /></author>
<date year='2005' month='June' />
<abstract><t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t><t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='106'/>
<seriesInfo name='RFC' value='4086'/>
<seriesInfo name='DOI' value='10.17487/RFC4086'/>
</reference>



<reference  anchor="RFC3629" target='https://www.rfc-editor.org/info/rfc3629'>
<front>
<title>UTF-8, a transformation format of ISO 10646</title>
<author initials='F.' surname='Yergeau' fullname='F. Yergeau'><organization /></author>
<date year='2003' month='November' />
<abstract><t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t></abstract>
</front>
<seriesInfo name='STD' value='63'/>
<seriesInfo name='RFC' value='3629'/>
<seriesInfo name='DOI' value='10.17487/RFC3629'/>
</reference>



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



<reference  anchor="PMTUDv4" target='https://www.rfc-editor.org/info/rfc1191'>
<front>
<title>Path MTU discovery</title>
<author initials='J.C.' surname='Mogul' fullname='J.C. Mogul'><organization /></author>
<author initials='S.E.' surname='Deering' fullname='S.E. Deering'><organization /></author>
<date year='1990' month='November' />
<abstract><t>This memo describes a technique for dynamically discovering the maximum transmission unit (MTU) of an arbitrary internet path.  It specifies a small change to the way routers generate one type of ICMP message.  For a path that passes through a router that has not been so changed, this technique might not discover the correct Path MTU, but it will always choose a Path MTU as accurate as, and in many cases more accurate than, the Path MTU that would be chosen by current practice.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='1191'/>
<seriesInfo name='DOI' value='10.17487/RFC1191'/>
</reference>



<reference  anchor="PMTUDv6" target='https://www.rfc-editor.org/info/rfc8201'>
<front>
<title>Path MTU Discovery for IP version 6</title>
<author initials='J.' surname='McCann' fullname='J. McCann'><organization /></author>
<author initials='S.' surname='Deering' fullname='S. Deering'><organization /></author>
<author initials='J.' surname='Mogul' fullname='J. Mogul'><organization /></author>
<author initials='R.' surname='Hinden' fullname='R. Hinden' role='editor'><organization /></author>
<date year='2017' month='July' />
<abstract><t>This document describes Path MTU Discovery (PMTUD) for IP version 6. It is largely derived from RFC 1191, which describes Path MTU Discovery for IP version 4.  It obsoletes RFC 1981.</t></abstract>
</front>
<seriesInfo name='STD' value='87'/>
<seriesInfo name='RFC' value='8201'/>
<seriesInfo name='DOI' value='10.17487/RFC8201'/>
</reference>



<reference  anchor="RFC8126" target='https://www.rfc-editor.org/info/rfc8126'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author initials='M.' surname='Cotton' fullname='M. Cotton'><organization /></author>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<author initials='T.' surname='Narten' fullname='T. Narten'><organization /></author>
<date year='2017' month='June' />
<abstract><t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t><t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t><t>This is the third edition of this document; it obsoletes RFC 5226.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='8126'/>
<seriesInfo name='DOI' value='10.17487/RFC8126'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="QUIC-INVARIANTS" >
  <front>
    <title>Version-Independent Properties of QUIC</title>
    <author initials="M." surname="Thomson" fullname="Martin Thomson">
      <organization>Mozilla</organization>
    </author>
    <date year="2018" month="May" day="22"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-invariants-01"/>
</reference>
<reference anchor="EARLY-DESIGN" target="https://goo.gl/dMVtFi">
  <front>
    <title>QUIC: Multiplexed Transport Over UDP</title>
    <author initials="J." surname="Roskind">
      <organization></organization>
    </author>
    <date year="2013" month="December" day="02"/>
  </front>
</reference>
<reference anchor="SLOWLORIS" target="https://web.archive.org/web/20150315054838/http://ha.ckers.org/slowloris/">
  <front>
    <title>Welcome to Slowloris...</title>
    <author initials="R." surname="RSnake Hansen">
      <organization></organization>
    </author>
    <date year="2009" month="June"/>
  </front>
</reference>




<reference  anchor="RFC2360" target='https://www.rfc-editor.org/info/rfc2360'>
<front>
<title>Guide for Internet Standards Writers</title>
<author initials='G.' surname='Scott' fullname='G. Scott'><organization /></author>
<date year='1998' month='June' />
<abstract><t>This document is a guide for Internet standard writers.  It defines those characteristics that make standards coherent, unambiguous, and easy to interpret.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='22'/>
<seriesInfo name='RFC' value='2360'/>
<seriesInfo name='DOI' value='10.17487/RFC2360'/>
</reference>



<reference  anchor="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



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



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



<reference  anchor="RFC4787" target='https://www.rfc-editor.org/info/rfc4787'>
<front>
<title>Network Address Translation (NAT) Behavioral Requirements for Unicast UDP</title>
<author initials='F.' surname='Audet' fullname='F. Audet' role='editor'><organization /></author>
<author initials='C.' surname='Jennings' fullname='C. Jennings'><organization /></author>
<date year='2007' month='January' />
<abstract><t>This document defines basic terminology for describing different types of Network Address Translation (NAT) behavior when handling Unicast UDP and also defines a set of requirements that would allow many applications, such as multimedia communications or online gaming, to work consistently.  Developing NATs that meet this set of requirements will greatly increase the likelihood that these applications will function properly.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='127'/>
<seriesInfo name='RFC' value='4787'/>
<seriesInfo name='DOI' value='10.17487/RFC4787'/>
</reference>



<reference  anchor="RFC2018" target='https://www.rfc-editor.org/info/rfc2018'>
<front>
<title>TCP Selective Acknowledgment Options</title>
<author initials='M.' surname='Mathis' fullname='M. Mathis'><organization /></author>
<author initials='J.' surname='Mahdavi' fullname='J. Mahdavi'><organization /></author>
<author initials='S.' surname='Floyd' fullname='S. Floyd'><organization /></author>
<author initials='A.' surname='Romanow' fullname='A. Romanow'><organization /></author>
<date year='1996' month='October' />
<abstract><t>This memo proposes an implementation of SACK and discusses its performance and related issues.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2018'/>
<seriesInfo name='DOI' value='10.17487/RFC2018'/>
</reference>

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



<reference  anchor="HTTP2" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>




    </references>


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

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

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

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

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

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

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

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

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

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

<t><list style="symbols">
  <t>Enable server to transition connections to a preferred address (#560, #1251)</t>
  <t>Packet numbers are encrypted (#1174, #1043, #1048, #1034, #850, #990, #734,
#1079)</t>
  <t>Packet numbers use a variable-length encoding (#989, #1334)</t>
  <t>STREAM frames can now be empty (#1350)</t>
</list></t>

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

<t><list style="symbols">
  <t>Swap payload length and packed number fields in long header (#1294)</t>
  <t>Clarified that CONNECTION_CLOSE is allowed in Handshake packet (#1274)</t>
  <t>Spin bit reserved (#1283)</t>
  <t>Coalescing multiple QUIC packets in a UDP datagram (#1262, #1285)</t>
  <t>A more complete connection migration (#1249)</t>
  <t>Refine opportunistic ACK defense text (#305, #1030, #1185)</t>
  <t>A Stateless Reset Token isn’t mandatory (#818, #1191)</t>
  <t>Removed implicit stream opening (#896, #1193)</t>
  <t>An empty STREAM frame can be used to open a stream without sending data (#901,
#1194)</t>
  <t>Define stream counts in transport parameters rather than a maximum stream ID
(#1023, #1065)</t>
  <t>STOP_SENDING is now prohibited before streams are used (#1050)</t>
  <t>Recommend including ACK in Retry packets and allow PADDING (#1067, #882)</t>
  <t>Endpoints now become closing after an idle timeout (#1178, #1179)</t>
  <t>Remove implication that Version Negotiation is sent when a packet of the wrong
version is received (#1197)</t>
</list></t>

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

<t><list style="symbols">
  <t>Added PATH_CHALLENGE and PATH_RESPONSE frames to replace PING with Data and
PONG frame. Changed ACK frame type from 0x0e to 0x0d. (#1091, #725, #1086)</t>
  <t>A server can now only send 3 packets without validating the client address
(#38, #1090)</t>
  <t>Delivery order of stream data is no longer strongly specified (#252, #1070)</t>
  <t>Rework of packet handling and version negotiation (#1038)</t>
  <t>Stream 0 is now exempt from flow control until the handshake completes (#1074,
#725, #825, #1082)</t>
  <t>Improved retransmission rules for all frame types: information is
retransmitted, not packets or frames (#463, #765, #1095, #1053)</t>
  <t>Added an error code for server busy signals (#1137)</t>
  <t>Endpoints now set the connection ID that their peer uses.  Connection IDs are
variable length.  Removed the omit_connection_id transport parameter and the
corresponding short header flag. (#1089, #1052, #1146, #821, #745, #821,
#1166, #1151)</t>
</list></t>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIADmcBFsAA+x9aXvcRpLm9/wVWPtDk71VFA9dludYto42t2VJS9Hu7We6
RwtWgSTWVYUaACWKLXl++8adkQkUKc9YM/3Ms+qdtUQCiTwi43wjYjqdhr7u
F9WT4qv/9cPJ0yfFcfHDszfT35VdNS++3yz6er2oPsDfy9W8eFvNNm1VnLXl
qls3bf9VKM/P2+r9kwLfjT8v3rRN38yaRZg3s1W5hNHnbXnRT+uqv5j+y6ae
TXt9dnpwGOZlD48c7h88nu4/mB4ehhn84LJpb54UXT8P9bp9UvTtpusP9/e/
2T8MZVuVT+LnwnXT/nTZNps1TySErofpvisXzQrGvam6sK6fFP8EU5oUHbzQ
Vhcd/O1myX+BSS7L9bpeXf4lhHLTXzXtk1AUU/i/oqhX3ZPif+4VJzfV6rJs
6We8pP9Zrsrkx017+aR4UXb94ob+XS3LevGk+L9tvYcL/x+X+O+9WbOk37YN
7no1r/umTb/2/V5xdtUsu2blvvZ92fb1KvkFfe/75q/1YlH6Dy7p0b2eH73t
s2HVtMuyr99XTwL8Fjdvevr86esfn5/+6Qk97omjeNl0XfGs6qtZXzcrIomn
zeqy6uif8NceRv+K3hscKf6wq9q66urVRcODF8XJqq/aVdVPnyF9DMmkrWbN
+6q9QSrB5+Pp4J+p/Hf8lG45qbHTGjmTkW+c7BVvr6u+z75wUq6yn9Pwv2+a
y0U1Przu99nLt+lW/wA7dOku08vypmr57tX9TbEDL+wWfaO3EQf5Vfe8X3Sf
td0Zmd5KqqPk+nk7/hY+s4H55of6toI9z35Dn+hWR+18y57jPgwo/uTVj8en
J8evzrKD+LFqOyDs6clqXq0r+P9WxNnWFSyv6orm4tff+3r1vmzrctV30/2D
L3wE8NPnx6cv/zR99vztye9fDe/7k0QARIJ8DTcSpcRXYxO0q3jadD/Vq3m6
O0dAWdN93p2+bC8r2IOvrvp+3T25d++yafYuF/fm3//Yv6i/wvm9ffn6jy9f
n55kB/PHagHsrKJLsGiuF01bd3t7e7fM5xTm83ZV/lQV38EqqlUyq/1vpvsP
/ZT4XZvXdXW+V7azKyCaPdhB/Pc9WMuD/SP4vwf3Hx89voePwpNX5d7sJ6Aa
eqzTqd2DtYTpdFqU5x3IvVkfwtlV3aHc2SyRqObVRb0CiuqvqmLWwJ0G0sK/
E9M1SVmsRaruFUXyfphX3aytz2GEWbNaCXcGrlyeL+ruCh+ZFOsSZtYXTP6T
Yqkni7wGGXlbLeryvF4Ai9kLxzPY33W5usHf6mfgg/Idnmh7s+6by7ZcX9Wz
4grG6K5wg3GwBQqKuQqKPVn+qumrd6/w/+ubd6dVOYedCuFZ3c02HV40XjYu
DG8FHMZPsKL1opzBhqzihqC0x3mRxC9QuOG/YKV92MFL9D/wOuEJ7E6Ka5jb
VQFDyvmBHtOHP/+dniy+rCerb93DH9zrKvrPP5JIfYeD/z2O/ed/gMX8USbw
e5qAsRSY4wxYEmzPRbNZ4ZeK+KXLur/anKMUvofjXF/++R++BV1k086qMGvm
vG11121gyfg1PCi/GdnI4ZaR752D8jal17p7i/K8WnT3or5FK8DTWNbzOcim
8DUypbaZb+isQqA9xh2LNCLqX8cCZ0iQMFFYbLtZdXRQzRpPEhjEHg9W1ssO
7yo8/r7GpRYXSHjniwqG7PHZi6rsYeiOByoXcHOKusd3YM1luKyAyZeL6XrT
rpuuGk4EN0tnW4Aqt6hndCAdrPW3hfDxYgU6ZV+XvMzfgjZzPV0AC1jNbrbe
G3zuGBgK/BWHlI2AV5D44V9XRMX0w3V5s2jKOb7xFjTMcpncMfdjfDh+b7qo
3lcL2BFY8ow1KHz2aZzQsoZLZgoX7BIQPMyA2N+r4zP4yTnwWfoGn90SvskX
Fi7g1ar+FyIqIOgVzPiibZZF9WGNogkHuQbyKc6evpkUb5+evaFPNLDeNgyP
udtjgVlsOhgQzrcou6LbEFPr4VQa/DdMCu45TAqIEc5oBozhEg+2CYvqssSt
xtnDqcMMYFVwjbqbrq+AQvDTTJTnzQd6BU8fRO+iuYETqeTrpKHreXRILEhB
NayWD6PzR9QVy6brlZ8Cwy+RrqoPMq0JKASzxQY3j0bo6stViexEWSyRIjPm
SOxNUb1vFu9575pNDywA6LElThpUVYCVwolt1nB2c16MW1vOwYvIwU0G0Fr1
o5MiTpSfgLNb95tyga/CrIHV4XYre6e9rHCVdbfsZP1MHrYOvDTb5UU3pGH7
IYwebqXgiR/Y6JenRYeQSJs7xQ3O+zddJlX0Hqn5oZfn48fEjPn5Z/4s7hrQ
LW4FKNDFwd4RbcBP1Y3nC4W8DY/8/POeXKj3wj8O8Bu4w3ScCU1EvQ3+qoNE
vZLGAk4Lt/o9ki5wJprUMxT8Nf0bdYKKpgPybd4VX33/w9uzryb83+LVa/r7
6XMY+PT5M/z72++OX760v+gTb797/cNL+H2Qv8U3n77+/vvnr57xy/DTIvvR
98d/+oq36qvXb85OXr86fvkVLgaFUDBCLdtKLmaNquy6rYgpxsOa4zu/e/qm
OLgP+/DfTl88PTw4+Obnn+Ufjw8e3f/553ANN5g/1qwWsGT6J+zoDXJv4FQ4
CN7sWbmu+3IBRjqymqvmegW3vK1gN93WEXlXdCwkPlo66blO3igKNP6nxHzg
L08K3G64qesGFlLQUMyOSuZxkYDhY2+rFohg+Fo5w1tI3GMFJIx/yV5GCfRc
Hrf3lQW2aCGgMl3hRlzAp9Ov0m2jt46B+C+B48HNOq+nc7jq9BBcf7zjq4p4
INAN7M28OL9BxojMCXdxZDlRuMjgM6TLtuMrcF7111UFe3fd8Lu6XB4TRkQD
dVEpj9XLV31A65eOIGoOnfAMm0/dJxMoTp7xHED7W5cgqYoa7az6oq5aHgsO
kE4TqE5+dTNcFCpbJWr1OlfgsM9LUP3sqEDTQJ3mfbnYVDIw/GBdVa2w1oqu
LqvJnV59/qfs0nW1WEzx/sNsUPqJxOfRREFbl21HR6BzhJOqQL1s97xmhUba
hOQkvFXO2mZ1syQO8XUB+nEpR+u4RQhvWH/HK3PRwuvFvC6Bry5pd4gZMe9P
L+Jb2Z6jvQOgEOCN/4gX8ujhPrJFOk1+E8UcEf98Xithxa/D+v/8Tx/+/BfY
BbCFRfDSqj/gepo1vxLCh2LneHfLU8dAuT0ycVRU8MF7v7v3dLcAu23bsCvi
1seT4ncTvCtPswHqrS+TfoILI6YMqgOIqNVlj9QAujZfV+BHyMEuq3aqPwW+
hOP+9rZJZSMSVxf9sis+fi2iovs5FR0dMSWj7DnMkFnN0eEUFlWA5gwyHH6+
2izPiVaQTajc2f+wL39wBqAAItOgC9FWa/wnkPf7oY4rSkbQX4kS1K2rGUyC
FWQc0E0LyBYf4VnE7x7AhF6jUhjXI84PFO5XPVh/75EgLy6A/6xIYVQnCQlK
3Dd+keZUhfXAixJZ9+WmBM2zr3iF56TrdGARkfSBq9KxzudmEhJRjGMkd2Bc
Gv+Yb+6BTYXIB5WEEu/qNjs3qmZlF8Y+qDqEkYfdN9JJ8cTpHGBdBw+ZtuWI
7DD5HGaou6OUbatgp4/KC958+N7FBo2n4uT52QvarGrVbaLU6/wUaJf5urMC
U/bokIJd+MeS/0f7N/qVpp2hkTFCaXJQwO7hEWB/dMrEulHG3+TruUYRTp+H
aQQwaVtbPWnzsx55NRDNwf7BPtxzYKz1qmxvdmHc46HwBMUF+NZ7pKeuCt1m
bSYhfpu3tHNrUsqBfTnNfiYzxKOCicAJn8NdRwURvxMvG+qv5cIo4FukEppV
wLmQlrmq4peHgwsdoBk262ULccPofvKqcAZB1JJq7HrjV8d2oPA74OcRIjNC
zRkkD39f5BctALb9ctXI6ZCs3EPe/+d/ArEhTtQnBQj2kjZ02bznJ1t0k6zQ
ElYXTieC57yCacCF35yrTb73l7+k7E2ogh0eIIxqlD4J08LxEq61E2/tLphG
XXot/BWSG5V6KmA8mlB3xborbAWszzEFPamB4kF3jF0rdFFmQAi9yPu5WWf0
QJB1wev7Hy4ueLpAwS9ghtWHEo30yW1hsSMwBDYLGLoKjkPDbG20ZzDjEzX2
m5ZnhMJs05aXKiAukXW2AxpM2C4r3nBMLJZwD9dt/R4Jjz0F+AHeeXHE/b7u
v9ucA5H+VP8SbxQ+f4+Yo3IkckeBDBX15uxmXTF9viBtBhSfPyJJtF0/MAfF
o9nbKzCxuhU1CON7Nfo3OnQUM+ck6TRjHo1uiwrUTbjN0U5GUxTuPewRrHnG
9B93dc5vrkA9btqfSMtmlbvY6ZXbndeXoE6AarbaJSsZ+RmcGxxjV/9VxiJ+
1qMP4I9g9oDYZP8naSXz+n09R6teGSK93JFtFPDapXIDdQdSCWBpLZ84EAj+
FCntOyCzOVybJYy3ErXS1GnYJpVaSrasG9tHcTeAgTo9GKRfV1Q1aQIlKWLI
hks0zIDfsPuFLLVaNCfTKL6j3wU8VJzeXvESXzaHTau80IQ+zRHEHnDfeqUu
j1XKVMYkEfl+vCcD13MwPT07Q9saN/2tmyx/Guw23CMdb6q8Rh9SN7IZlkDL
/kpln6evBfwaL0xnA3KRNHxaOm8IaIy4i1P+ECiN/4p/QrFfDP8cjPzscORn
R/j6AfzqqLhfPCgeFo+Kx8U3v+Rn4b9Ps/+FTwefYGi8ncXOo92i+DR85pf+
L3wamTz/UTa8c3S4u/WhX2cOz56evNy5v/vprfz3C6zrGTqoVqXGyKPhC2Ls
3tHh3t7B/ftxmWh6fIm9fUuxhs+YwBecA/95I2bzS7bJ0I4b+fMl5yDC5hUL
6J3H9w4e3hsntS9L57YVaHNu+fPr7APzlY9Piq8vQEI5nsMx1b//yjMlFr1f
ATsacGkVHeoniWZbx4Zf3bTqHEWf7qJireHi38asX6MEP2+ASoD7z8Xbh8J8
WaGTGz+KE+5Ao55dsbWJP0KBphNklYYUa8f4w87Hj/RvZb0/77JpylINdQj1
/eNqSSKgxi+DTkF/QIFAXgbTGl+5pYnAnIo4M9vBuSU3IMbxOxf1h2qu/oQk
TLtHfj87AvKygZ7dZU4bFtdPQnDnZ77Gga2J2gHoz4/3d8lniMYWMP0dVr1R
z6If7RakxFMM7oCUhcJPBZUDIg6nt9kn2Rqg0A4YTivTZfRbsgwxQE2J06AI
60szcuepIqGGzMHh40Tvk0NjHVDktlkB0e1ANFNQYFVNdLoDPNSUXve2ui2F
lB89X3LdiceGJ+nMaT6Us3wdbg2dqBHONFGPIMwIrUYKj1ToyiY4wJUY6UA5
GsKC4WL8ho5dVErzxaNrHGQZ4/XgL7SU17TzBykBMcWZ0wHdvbNEOsgHvM8A
vbe05V183+vHeCNgnPupV0scbd0e7amThzBWKpBUJuASdmWTm9lss67Fo3e/
uKovrxJvCZNVSVAT/PeopNOB324fGNfnxoXRaGR0OqxsgeJIhEf23cGa8Z5u
IAUQO7D/dCw6aR4Chn0FuuZfq7bJBtcjRdtSfMlHeA0vK/7GxWaxQGK2mQw+
PEEimW9m7GOUB9Wtf5+V1McyIyLQ2QLY5Psqt07BLubNNY8Fmwj7Hx7su5Al
PPZ4Sg+G27Qd/GxZ4ILVHTt2UhTa2TKEXcvtH+GT9VcyPRLbYoJbYMCAzZn9
wQGhabNlz/aAf7j4Zz3/+WcYKY3hSqyxjxwNRl425JzsEZAZwtjybYmjVDxc
3e3b/Z+9wlTVs7WlpKsP2Rg8hYlnKuXA8V4oVyl2xjz5u3sWMmE1zz4u4kO9
TvzRrjiYFIcUZriv+4QSYm/kFTCC4esYCma/TIlRbGLLsvldtS4JEUFYC3k5
/n6ShEtpIRanebD3ELcl8SCPbNn4Gij8ZX4Kem5R1hSYS9/Yg+9V8BERf+IT
+vlnkpt8eF08PbdzfFDJJCRWEbWR1C1D1IDoNhzmE1uQn4pXGMDa+ueTbcfo
b8OnJ1P8I//Z+uf238MwwMcevYCvnZCXdbF1NrZR7I5dwEb52eAwz+Gx06pv
b25ZlA3T4oN+EBvmGTz2nUUY7hjGQhFxKBnmKTy2T2r0G6Y6oIitw6z1ET8M
WgoDDWnMVvB+O7QYkBZEW0UddkJ0MNnChOmiTfAuGA8jnJnC4tw7HaMFVHcS
1YRi5l5DFuIro3doWkf07thtplHZ0RftGqFeoVy4TWFUYSTyzr1G6GKi2zWI
OvnrFWARqN+pRUGsIkbQBnG2oZaHS7GfiHP2QjzorBgK6kWvLVlp6tpCT2HU
jkF3yhRx+E/0g3Wg0CPgqhtVrNNoG2pOkRl0EQUhwIlxrr8TgZqoMPXps+6E
ZZ5knpiqbG5G82D6L4jqRx/aC2/JZOwo/oG+4b5eEm62XMAqqogi1IOBLW7I
+sCIP2KXMOiOwzgGqm/LETsZ2ElUn52O4gX92/Xy7X/6w6cD+N/+p9MC/vdF
vB+3ucMGrqgv6on6TDfQF/VEGX++3RX0JbxA3v+hrN3TqfMDnWXuE0W7OG+4
D7qZF7wwL7i6fZB1kXXshASFFX59l0Z0YOxbWNAvAq7mH6qb4s0VBjN/V0d4
FjCtBlYgo97PRnVGH+P11jiAxQhYNccElxa457oWr1ZpksVFE50q59RH2rMU
ydY3YvhzuNZ0r0TUkLaYqXAYun1OYdvfdAgtqp6k4VnYD44xSjR3blIDVz93
8ERGzM4l9uKh6ZdNZYDIk+dvfy8B3rqdJ7va009kUw+3HdXBf+akX4DiAZLC
z/qCfyTTPvibnDZnmbGe8KxiCcaJHclK6ou4kMfbbspegns2KHmpQEugQ/85
eGVeIz+/3NTdVfKrRLNJmIf+Bv2hMB5h5QTVcV7NSrQr/UAMcugiWiG36VGX
WVyXcGvO2UFGnlZxVJnvdkxXqjlYKlBZdzI0aUK+Fhn0AKGqyfSQeeHREZiA
4vd0iuR15oNaVdeqvRTq2Y3Yk8h26g/91YR9pvgX8o4jvErcXXBsj5Jjy5E6
IQvW/ztdKeTuzHZa0BOzq6ZDx+6NOMpwb1dodyY8b4RRZT6FMXXpC1rtv5bN
jgbBr2Kxq70efh17PVcmaPfeyG1T7K6/iXJtBAALv2WpbSah2g6ivjsbgQDa
mU6wadF2Wdx4HzbBu0ny1n9VzTyMbAZ6WSP2lM0vr2RgZIeSMwTOg1cc88Iu
AmWrRMhCZoBm2TbRiUYyeYQtbbcds9iGc797q4ohXAvePsrhiNDHz7ALi1vt
wvAZdiGaG2MRKblXH78WKpKhQLs7Hn1etoOiE1eVnCxClnODV9I6UDLBr4PC
kcloU9wI7/BORxvgIQ9wWX5Yw9cIJr3uvTCYFHUfCIgnOQGSDqaDxsiesw8n
xfmmZ/jeeYK4RSfibZG6c/K1C7zpR+9mQHQre9LNvNwXQrt93xAm2K0RkMnm
tsg4vUWEutOATGkBUuWxuNUC5YsGLsvCiTh3+XZR5PX8RuWkTG1R3mBqEpH5
rdN8Qvbo36I1ipiTH1Z0/RF08oVj8Z8FOvn/mJNfsrd/I5iTt3aL9IwPxk/5
y83hn4ZzOKQ5/OXLzGGUeP+TFvrqSy5UHRoqlBy8ZCoJMeLa2C4T1cPB7F1U
MWE8pqmZTAcNf94sge8mLDkTCE7HuIX5UmrfeWXGl+V5yGgK78bHVEeLbk6x
UW4NFaYKV91rOlKny7wjkipaj3wQ1BT+VprAZeuYNes6Gk+3DS5ascxGvc8u
X19CLbDNtt92Ak5HwDQvMEZQPCNMKIsZFJe0VIW2MxS46zYw5KwaIO51Mk5f
D2yhy3O3nOR1yQKbM9V1kmhlXkzXJUys7Ht8UukkA8zfrUlQTQB4VuAnqgcG
3jC3ClEZCL1726igXOOEKW0D8+VrVO/gV6vmelHNL9mZDys4fvoHTjgL6baf
0m5x9QhWwTWMptNejg3bxRsRhrO6W61SNTO5D6kjF8+Mff5BdHTN28DYMk01
Qa8lCqszHfYInCIo8cXNJNx6lzHxZrNkNAQqnW0eMZCQwQijEgugFANz7WM5
I7A5zJ6aVZ2GFp4m+Ukxeqh238evLVAo4SvMTiNk3RgmD617Bu5VE/a1bMl/
inmZAVZYUY2O9FkBXJ/dPsisbNuayU0oCMF5ecR1dyLx1Z08jEpA+7hu97IL
kO66xE6E+PeEYIoYwSEFiN1oQDWxboskI7xeBX9IEmIKJytJDKCiF+TPKfpy
ic4ZZFSWEDXdrMprRqBbaYCJTzHj+WG9M2eTiyHvXCk+NBqjdrD9Q7dF7qfA
VJjoBbHbpaU6co9J0zLsAitRwbGj6QJsaUU8rlAe17ERJmMI3+UiAUDV7nMy
QFAuGUdg2v7aeEpuvCpdML/IOA/l73mwom4ZOS6iEffh0Qsgz5NeSJDBnIyB
3EavcMG78rIym4sog1kiHPuF+zf5BXkrq/d1s+lQlKmEKYWYFe2pAlPNOzB8
1816s7A4w12AJ1ngUFZKDhcdtIpp4HmcSvJ4DJX2Axz2IlrZlF4i09Z5Bp2n
Wy4NrhepQ3wHT0b2e7NawNahBkIBXisLAoONWwks2KqLC/wZkA6sqS9byuFG
f2qS+t1Xy3UvAN7An63/Ws1v922qW8mcVUOvHyVxDA522ymKTa4A5FLjSCl1
TpBjYBo8Z6TffrjiTxrV9zIdTNiUnxEKMNxnnM0tODE4D8yf2yyYEEo5HP04
haN0s3wMKl2XiG71cSTUe4uCKoRrlxId3aDQNejbCVx0SHYJrWWF3TYFKPaz
K8Ue0ZXNmIC6UfSmmvslulwypyz7dVA6uOQwFREqCvKX9DME11wywBu/Jlcs
NKsKXfqVk1vmvt01t6rhqspVvg5Kw8cgavH27PT58feS/b8DnJj+1u0yQp2q
LAQDVzMF3sHGRDhLVRfFpavqy75hvXW9qLNSsWlfnXnw+77Cu53KY47SsB4R
7uKmxDsu6l6cylxdQtYvn/GyfGTbEl2L+PmNOgez/VQmCFpvSSELdM31klt3
cLhvMEn5ML9W/1U0NdBDYq7nm+Nnz05e/V4OQi5MyD4IX7mHQEssMrU855MZ
mZdcBIZtyREkU3Aok930slm5g/wKoLjTPOhxr+NKDa27zkhB7VYrg6uzdIRq
x3RuZssycUeEPcGUeF7pN/T0V1U112pPkk87YUrUj4VokcmFZsxBG22QUdU8
3jl1dgN1Nm1I2PZQoVTlgx/LVQ9+Cq2rZJjPVzqeJ0rHXRvPOK5oQXFKP42g
Qoy4G4vkQOd7jcFILrlWtRwFKeyeFi3r0duub+p7+Fw1xBDiw4BhcLJTTtQA
qqOSQUyfTL5INQsuOEFxAA8l11x1N/VIqtmkopipZ9VtMwneBzLUc+oux/vf
4VMBRXdMtkg1GtIc1H2fmrTOnZQQXe5A0lsqnqwuxK8tbpwJQappuywXe8UI
aoEverf6TY8BFKo5xGH5UPdyQ3FTv5oBpfdfuXIOskXoYiFLWE6Fq0H8hiRu
25wvqiWWYS5OfrMMpLlJeG9ziaW81N1Su7AklpCgFRH9wgOr4vCfj/YLQgrC
07wWtYuRH2CGNqZpaaWD80qKksA2xDIVCJ7IrjEGXqjaw3+4V4SmEUyZOh5w
OD/PRPUm1kP8N5c9GR9eYWT583QCqWeBcAnNFyJWYZdnfBS2/DClvcQiZigk
rKRBoAFk/C3aWvSf1asseuaXH+xue6WIgqeizOzzkKS9sJ05VGG4EBVc1Y2V
1dvupoBbjBsEU8D6f6uOClBe8ZhqtgZxqmGpFGRQ8+Z6RfX/WLW7ycZHxMES
rQ/i5ysrvoQuldlnTWxogaESKoopgUNIq28uQlKGxVduwSVgIhTVDxChMOqj
2k0pg2qOoCnHJMK1Vs4FjII6DFcX1Op8TDzK6dA2LuGjS5ItDF7BCWMNQSYh
vjyxBiW/r/xOCKyaD1XB3Ahyyo6avZihxgSzh2I0ca+XIVGzPUGRiBPy2c+v
Fsuc32QXI+RSF8yWqq2R7+qHaQ8jp4uchag+sghSLXnv4Su5bMTRqAiMQiio
bgIPmmqpDE5BTpCu1Hs0XAkanp9co143Q3dBNaXc6xi1pai3I6v9LnNt/QKt
6ZnqPEFtUdLyc82IOf5dKlXmyOCX1I1zbK50lMe3cTtyKGNiqoCY8uWhCAsJ
FxuYdzWy0+h3w09mvA7WTc5aqzGEl8f5IAZ7SosrnS+Jd3k4OcmWdkrC3Ts3
ooxG1IsLhN3lsCJLbzB1Z5tHzSpsA55tQ5t9u12hM7kxrqrKOnxgxswzValR
90M+GQZott3EHzFYXPRECH3d4Yl443/mkkLFy8BKD9xzqvNE7HJwxFa6Upx/
WPaTSGzJuNISBQD67ofEobVtnQYSUgKDYRlaw/k6yHxaDEtY3F9+EJFc+gbw
+rbZXF6R7OSH8K7Xc60m9hOWA1VIkGW1rLaZkMFcY4ocYoPba080PvDCs+/e
nT5/++b1q7fPhfNlL0d/nxbnJNxpxym4rJ58xv45/SWM3Xy6mAI8jfg7mt9T
LOj6/NXvdYIwVIW1LGOMI9Ga1HAoioHOqBIPmdTWDSCPpNEkpsUghSDbi2C3
IWUVSlgzciJ0PfBvNTfDyKFqxUPP2r5lPV9qRXes3ouaufIO8YAqwYzg0/WK
ay8nlSqX641VzawuLlBhYOAefhPjNAmOObDl140pD+b/irczVTE5LoQzUZeg
yNdJANE9yU6QKHFkz/G0hjSDIlxGDU9fv3r1/CnW4X339OVrew8FBm5MGocD
dXSG6unFZiFRQY8F1TigiOSY8MexsAStnYSa9gp72/IRsjiUGgag68QpkctY
Mi720zwQYoL0ppf635KloOGu7BMH20bw6E0NNLoilGwpMJTUWXNWUgJn50rY
coBKfJetIu+rNB3DlA8pfjcIGRiAuct3ym0E1XoYqjhPVcMe+iA6iRB79yCz
dHKExyhB50of51bWaFw1dSXa9fcf6kbcbTnxbgm7TpheS0M9mqajzuGUmhHP
gSVD6gvvNTLQSunOd9T1kk+LuCzukxpUlYpwC1PdoqnAlif7QJ78odzPyrVq
kn6b4KhFKnRbg8kpxjoBim9TFBQvQ+aU8cPbYO6qR1GPBMvdGlCxe0Sd0OMp
RmoUblBlWty4/G9ZgJaxYIUikBxz+hDHRu5Etns2XfubJVIl6dAQ7zRMLpm4
1S8IIyteadkClaPzSsdhMzuC86UiLecfB9adZ1w5j5j0IOwO0+DfSCF4rARP
zvzaSug4Bm2OfrZFVppwN0xSTVj3DjAULBGOrqVtqBBdONfieJPR5+6WbFfx
KuIc2mq+mbExGpVV/3BH/nxx6ZE1E9txcO3/+aZVqznpGhPq5bKaY44grgCP
4BqdSFT0NQ2SJLD9ASJIK55MAlrW7Gzg6AJhPFAfUuPLeaPLHK5zFk0B053t
BJKNP69QlknCT2RQBP53leB5cy2+lX3uObY5S4otms0jH53fMgBHOiWFhdsz
MHulsyNd24kIdEMjJkNES1qKSbZV/ewBT3w1L/Gurhqf9dAs676v1D2udc5x
8DjjZJ+ID8cal+yRRrWF1Vu/do788npSVylOdclFJklG3BTXVVs5g1i6dUSl
Lp5IQqd2ET3L//h1ytvxBg5q+qgOIF5AV58arBrqBoAwF9WTrapYGFTxyisu
dU/uiLJ4CzjcYgErFsGF7RXOk0312+0QDPd+J6WHts9MA1E4GhbVx9yzkXs+
MWIw7TEBXcWE11gYjj1fQ1u9Sur7o49jUPTfIqODBQbzRODyCDJ1s80pUKdK
1fgmBI+5jZyBiyCsenGSIC+N+S6iS6mqkiwofAY8RE0/A0Q4tIjQwyhWJBb9
lWuz9bQIzCibyRxB3hgWSkgONFgxWNKnN7gVhMZdxRcbAqpuUBMVz8p6rnq5
rxE2vmZfC5z4M+XCKHTFtsG2SEpT3LKZacChN0eOXCnYUDogzn7D0IgopRl6
q9hhE7dx/phdX6wbJ9tV3H+CJ0m5R6EZ09mp+thNYu0KdIqy6hFfhuglZMTf
oq4dfXlBD4YoAdtmsSkUxWRkjGP3X/qxiMs9RJe7tkZ639SEraWInphITCNl
i3XIOfHXHOAuOtdcBKOCdLmdq1y2RdUnp1ZSw5dO3uOBby+KhXKLjT8xCoNh
34hVJ3mbd/oxu6xycUBJtWLxIG1TXAuYzvwgTs7AYJx9RhLrvFwgPL0VLwNj
a93lKufBHkH0G9ePJB801jHeLHUF3F2Hr7C0vchaPtFmSq1CHAPvI/6cv8y5
qQXXiaeNUsUqrXXAdjQinnMu3WDVrhtXcIzEei/JeU5kpCuP9tRNegUHWC4X
4k/QhrjOrSxEUU9o/PHjGlay6qbojUgtYPq0GFB+mTtjdZR29Y44LKKG5Ie4
w5BqwkPThHwGZIbFpOOjvcM87Xh3K+R/FAfjnQhoEGuZVUccwadcePdqd40p
makS1GJPItOA+gaV99StOvBtsFXDLBvb/DIp1BdUlCdviATyUVL56bYncRU3
auyWB6u2f9CZvHr+x3fOrYZ3mIwy9F3Q36ar6nqaO/UTpUQVqQyCCkOxas0V
vhPwhjPs1Lwds/RrQWNxTTtRNVramn388uE/PzycHuy5dJyolgSlpfFw8Qqb
xfnqVomFnGhMAR2+6mswgyLzSTRtBLlSR0JRZeRiJU8H/zSLPo0lUunL2PUh
v+c4tIZmyYXAuMoQPdrsvIh424idSPtWRfutrdj1li5IOlOZR8hfb7rvWNmf
PBzumUGmA176k9Fk/7gDQLQlFSrG0yymWL7ARZxomrNFI94pNw0Nxthat7iH
CwH7XWDRkpjnkrUKkSDjWxXNVIqCgHAeDQY/QurP1KJsZAtBqDbE2Q84fToC
Uu6J65PETkxM7mrgYl7nHHOgYADllcSOK8Nd5eIX6Iwg7hTbI5I2EOtFxvGJ
z472UOgy60mrLhSvObiLhpo8gbWHwrbXXf1kByvHdP4lnsrwS8EtRljL3LW6
I8fRemVlLdl99Kl44b6jHXw+Fc+l9qPUO/uE1V+64o3soJVNvKtKYvYDKil4
vv+B/8T0zU/FgczAfvDIp3fyewf7w/eyBPJP2Clw8N7B8L37+XtH+8l7mAbq
N0sTP1Mo3XP7Nd5L+R1XmaIChgiBMwOpq4o4HAUf6iV2DGYDoeHGSGPlRwnE
QqUQXE0/lRBnV7Fg8kAIJCC90V5uD/YeZmk8b6KuMFpuhGJsXNjGKrTDhUWR
i0yJSHdjARgj/7PRn0tGCDCEvt3wRGmvgnmAklIK8XoPbo1c7olyu978GLCz
AR+JrTsX2Jm7y+qiRK8PKcIxCIYcwPuEFVaH+DxZdTG+6gHUKxmUd3HoPd6T
hLp0qNSfLicwGT+fecX0cH4TLrib78hzvnlhx5KiU88Cg/vMFlFZeLblNxqJ
wGraOIjtZLaExYYa8XFl6GCVoTUKKW9v33lj+ViAcgBzCPsfyvLx4cXRPkPZ
XH5FksdwwAXFXbDs4OKb+1bmQzev7HjAI/ztiAt3TPhTXRoSFEk/PRfgv0aU
MAxNJMiWxqUF/+MFx04F2jnTEWwCHo3euawGTnQUsbu7SsJtCQ6FsxdXqnEv
bgIvf0gvE826cr8hUluUN+LO4nJV3M1ARHlAXDoF20i9IslF59yK/urCWdT3
7xyXrPSj1dJFnRSAA288b2C1Ind0un6zUKmWV+xO558BhYAqdNENxjgPBwoT
t2cy9URHsdCxiyyApihVWjYLYUOuTNG2KdZdCqwwUiFGiswPRNyiuQQFpL9a
6mCRD1Ik8nLTbDBwP0YeYib45tR8wa/tWoekTnt9kTjqUoDYKsNreUNg/8PD
8qI8vJiEXIvWUItDJH14eH44f/RNhGvkV0l3KHDY/r4oPAyO+5Zx4uKeP9qn
C719hy2IFERbvW1as4P9R3flu4/awCOxo0QxE4vmjnwR2nAtM9duFlpKmFMn
VMKOBHa59dmLCCyhv0oTtI9fS8hwmO0UsRITC82DcHHRV1+57LOilV7h5NVZ
wLIY3VbkYWZBFGxBzBsJ7TMwRpAuf6P1hX6Vcifyh8/t4Mv38blzDodffg7b
p/AfudBX/yFNk9io8BdCrYqnrK/SrRoU3kND4k1eRE8wmJZJ6mUIA/HY5xFB
YBYrCQ58Zp5zQYlTGxwQCPyEpVJa+2+JFufR1YgHXZfWJVyY33mDEd/2Zo+d
Q/yh8+qyXhk+O3IqaoQ4UVgVsW+UuVj2XQqBV9YfU0IY+MupVdaLxX7/6/AJ
7pT3mAjUkzLVVX9mK3/B0XRPyb8u6bJbU2rBCeX+HkGs9UyO8CX9Dgn2RaQn
0pZ8tyQeR/skFYmRnNMCVcdMMJPO682gfanZSINavYqLRXnZSQsaEHHBPSSu
ovxDHeI6b2KVP6kijU/taZcivTltheVREcJT5Y1KBDNwIz4laxOKuSnmitV2
ynvWxuJHskbgeN20pLHFp+KZlfMdUmnuihlzzHxO84p9uyqfLMnDfcWObc3p
yknHCRnhID59+vbsnRzbYIS266ec+pH3mtg/jE8PfJJuBOdVJ7sVx5ERjuII
x2/evDx5euyGiCM4HJENISPcjyN8f/y/3z07Pjse24dl+WGK8I9h/479B+kI
vA86UDoC70McSEZ4ODrCybOROcgItXbckBEexRHepEeZnmZ+lHGEx/Hp3718
/fQPz5+NjnC+aIDNz8fo4Zv4tKzADRRHkBUkA8kI5WCEk2c2yGCEeu4GkRHO
4wjDiE0cYSRWoyPM/Bxev3n39vmreDn8HJr1VAwf3QwZYR5HwISsbWcB4jI/
Ch2hik9noP70NMv+ajq7An5XrS6rZCcvshEMQT4ygrroE4o62C+m+J9Hdhbj
q8hvNo8QxUfS/MWZKCg0vi5e1hcSq3NgGA3BuBgGlTETZYSKWrQdWxLmNblu
0rgNCgPu9ewjrmnDSKp9219TreGx/MaYl57k5ZFb0ZILLfjasROIII5bP4li
YTWj2kohA3k66LOmbbn2v5M0E31Z3ki0knPDQnQVn7wpyIDkQJk08NJtmRRz
hjG/OsaI1rm4C8nOPq8R8Ts2NRcKRRlbrwQomk0IUZIUt9AidvzxED8+hLbq
Czw4RUC/RzSSB7fCdCN5dGl+4ALvH8aNZs3St+6kBuuLsus4zaixKsEuL4Ha
2PP+nFNxv2ZGXSbYB0HYBa5Pn0SSYa+mEpfjJJYpbHbPiGlEEVGOu6RUx/dg
ad81aEj37Bq2r+XuidGv7mXRQSxIXt6CLyH/Ht5q84ttWQzhTAVdo70IVdGf
wSj4/uLGK23ltlD4HZFwbkgflx2dpGjDpPFw3ol0907uwtQAj6CosIOLuB0j
iJsUjZIMo3t0R/oN4clSvICrS3CFDUPm9Zy8E+K+ShMMu4kYQG4bo1cRc4Ja
CU2UfXKmEdhDBtW8bdYGvKIt8EUq7gATaXLPjThSQiSBwgN/kz2l/NunDIfR
aJbcKUSz0i+m65+Sm/YjpYIl0BZUzaVM5qAo/C31qTA67o7FIhSWusEIEuTk
T2V43kIs8SQud3JUBr9PWRVPvOOasjFy7r6jSkJwWfbSvMGKFoyTHL9LZHtn
6eXPmNcKKbQVFfYTfgtaKBCO7luKj9Td5bwdR2zmjRYURqzoh81k6lg47qbq
JbUN3eq6fThFpDIOTwbzAzYc2z/foAwhqCmXqujrWb22lhds0qSOcWnsylUH
6HO00zAbvrLlSBqOh6hT9smKktC09K9IYsu+0R0Njjkp7XIe4QjtMm/OaZcm
lFZs/fwJkdeygy2CTSFRzvQmheUHydkkIRAor6/bgCGrxx5zOcVdfYsneiib
8Z3pe5LMlq4LZ0maAbqC2iavWIlFNxF/WYAO2y7JCbX9ixpzTjA2XBdqdJP0
vkV9JDaAww2skhC6qyzhbHkpnHOyItZZzzaLErZpkJ2Xo9ysuo9B8YY98aiR
Au+S3GtilrIOogX9YtKmbrNa1D9hNoEct8T8JM0nC0I7l737npwxus2k6qCM
gPG3xlKGIj1yqvQqbFYMC7WLgQmtmjV7J8lMDBxSWEGlGM+L9Axro/YnWdY3
sYuRwrfqZRyhgdiIJTYOGd5uWPGqSfPeJrTVLBK4NmxSqnGgO+Zq4M+kJiH7
kzHI8xNcxjwm8XHOzXVUKeJujNxiikpjUlzTkn6pNkFIOvtM3IVmPQDLkpn9
EAGaO3k1Ok6OapbLWhD7MohWb/SNHQaikYSMZ2pceCk2UwEdrlr3DLa7yYCH
3ZDzhG1FFTi6twU3Rsus2pbwwfMqvH1++uPz03e/++Htn0Y3OUHHJjvnhBBW
rYY9AW4Zw3UpGxuRUCXJqClFcnHKWhP4jdxFlYNIZnCg5/UcZL9gzSWGOUys
VtRL8GkXJkTYdKaaVF160evLFaq4uPEUIo/8dHjB6tx8YcQgBuv47s3qdrZZ
gjm4mkkZlpuQCo08nrYFkZfpuVjWIqlxTeSqLe7Gu8FYp/vEWGYsr3IHKeZF
mVhcJYWg6KSJ+sTVoICU5abntC5jFXtFVkzl9l4kKajX54q65AJOXVbzLLGE
ODt3wFJGkkl9mP92iDkBLiKYD4wKOkwruHf3uvZS1VflVJLEGRv7CEWsSzJ9
6ryAmHgoLhZahVVxJgL+zyuA6UJLho3UrROjxLeSM89K4stxmGGCV0Guw/Cs
vehgvY5v4/a+Cx0peaz6GJMxVWsUeq6NcZgpqgj3mpiTFjZ7kWC3oQOSNOSI
EBDm7vIMtBC/HVjeRoCrJtH8iNhQQt+AoF9ab0gnHzQBMjEZx+SxQoClIhuh
haycGgFqxAvSD1KItBLDGBvw10uL5XrE70xbFoKpkxado2US34q4lA70HCwe
Xfc5bM70dBsZK4nDOZ5jhsRqUI9HtCtfX2pxNzHRla+YnP54JUCsofFym6JV
98IPQPeY/RRPN0kcQ564vaZx53LxtBLOan5LSltMw03tmERXIGTYiZQoockV
F8jQmOJ9MkdmwL7mXhd3tZhwzZRZP6baLcmRI+xMUkI6xhXZJUQ9vpmBmWLK
oCbF0X0x9TXrmXKWDq7HTkzOnHCOLLTlV2nWQJLfHGYuKD9yEdINnau5QZgV
zkLJRNCIR3kSRUOanTAC6yQEMFUlrCiZSXc7pjAq7RoywJeoSOqioeE1aASD
Vy921h2cQlrbI6nQnje7KCVnWAave9fxRncBCNdBjwq762hv+yItVD0oQ6El
BpGTMNbwhbj6bVKUUrHdSigf36V7aksGyfqNBefrpBgTu9pvuQvZDPPya0On
Q8gTQD97TQP/CGuKt8yus8JIaaIK2qgMTV/cZBQaVIm9lQFcWFnGBZDz3Pcq
oIpvvYCsb5nb4IQ+58N0lxcET4u38zea5h4iIY/pqwkMddXk5TUjPFsqFCDM
U1si+XGUbbaVFKxi9H10+m6vDCqV4NQBEgteuTrSPxDX0n6vuhsdgzi9NsAw
WbzURs0rwan3oKQ5V+MGJZQCgAuWe2HUji/OGrjni3WsWYrZTPbVQQUybShr
/QjTmqAdxQGuauD5Ugxte/ltIwvcfdCegB6c5pSeJCUxp7oRO7g0Ic00nhDx
qz796P+SVNIa9hdld2UH76qQxc8nBJDVPU1OkROKlDCYTCMpjYzmuljZTV1R
gn5vzMHa9upmYAMp7lp87C3p3kpRkaoVnWGDAbRMYJ10sAxDRUn4PKO0LATq
atH6axyzxeS+avrylu/7UjGxdWvoGs4fjurziIab1K0cbW6EMz+zKUcz37U4
As2PbNO2WtQsekupu1/ldUG3xICpmAIaU2A5bY87SxBYItSk2nNXeCsXq5mN
aeDZV7rSO2N93w6srSuJsLOXb4uDvaNbe/h8m+TxJ82JRAvRsnlW9YwCgLGl
7DbOZsoEy0+Y0Z7srTX24fbmvGCyXHDXUR+ccP8jmO4cfkK6DxZiKfuSfcJg
xGzaFRcevOX7/BX6Jg7/JITfZtklGDKpPrAaMOGIX0CA6m+9P00jWsmrE3su
WpbNmgGKeRKLPstanKMJLlYAc+Qm6DO+XJsV7INOr9OX4e94dbQCMIPiSHl2
gHznD8efUk42u9pwYFKyGH8b8d+gF/IHnApGAhEGoBzsrgINdXYz3DypBqSE
OsYMLBUCE1JI1mFJLXtyGp8ETjn8AlUiQ+Uy5b3F5/Le4Yj+Te6X4utLGc3u
4N2hS3T88s0rmvQ/nr54+uho/0D8QVzqcdOuQc+g7+g2+N5GJeMpInCRClhx
EEvJc9hQED7nyunlAUGL/2l5VFdJMR6BVtAkf3/B6V5lvRz4Q2T35PF891D6
jTff2NKE5bwyH0DWiAUEE3pBuaWRBT/Eb9C39eUl3XcG+ubFP2Ola/lAyOHJ
FmrxtUWk8TJ5vGCbqyXeltJmjAIj5HVoqAi/PEz3TSsXW9qKcEBhD6pfiHJh
+ZHG7vNyHRNMpWus97TTV4DZrXCnUbzBT+tZFdq6+ymJvqU9oO9QLo2cM1R3
KIuDw6NDyb/1yG7t1553a8GUKbT2ZPWxihvCv2Ge5fsSjAfnTrtrShgZ147l
F5TijDeOPont4UoLa9PsOK+VXQAZ9jbvScdyP0r5N8ZhrEbRNqE8YX5p8DE4
W6wsl/CPeQX3iIFQXeDtr9txPUgRxP4ViW7NMZpYUzCdpAXipMrZlaGksKyC
zYJRxZbVzpUvb+KlB5qE+6M14pZcmJHre1GoRCfEZa2zHpHiJJdn4oHHNCTQ
84L6wpUU2eAX6hvl+6K82jnEYyg475dv38ePF/UlmBXTcZFgdOg1mNi3XWIW
7BNbgAzf6LW2ZOcjrnLy306mz/bqqr+Y9osO/+/giGiFMgaKYgMbDffhf23q
mShV35JQrEAHKj5KxoowwnfL8sM7VlreITvf2d+djDxBvzoY/dV5Pa9lhG7n
MD4CNtg7rFzSbPqdI/vxmhDlcPbvhDHu3Lff4Wh8c9+ho37ngf3G4j7vKO7z
jmpi7zy038NL7yiR8x1yoxXs4s6j0ckCndpcH9sTOw8fPDh6sIv/+nnkkE/m
vH9y1LqDYw9GovlWnmrW5b9sBAr0d/t7e4f/fPBwevAP32772Oin2PlU7JiS
v7fsLt8hEnXXnoE/2IFKeOo7sHIXzZMkPckRhG3Ke08gbhSD48COgm5PNsn2
0aLXLQ647VmzdfTR7u/u47Y8nt7/B33r52+37rG7ln93eHj3fnZjG8o3oTh5
8/4+0h/+5SGSU7Fz8GAXhqnXPybLkEOs18dMtDrjA50xXrmDh4RRTV+J3Plk
jsd/8Pgf0geMtCnIeYaE/U8HD/8i63mj10U+/G3MZdnOaRSc7LIugG2MbI22
+v4/dsZ00f9P0i67AF49e2ffeee+Y68BP7uQVJJEfvlavWPM0zoigbS0fFdm
1piiEu39WGTSkru3WOuCmcbHxi16qxvqUj+5yZ1V8mKg5Crk/bm2qAHqFE2B
EVpzVGISo1NhYRrVWDIsSBtWDWRQkih1vTDC0AcUqJRERb6HDG40Ym4EVXOj
p+9W5895LATuMHwZBr3jHFu2eK3PlJVgRVVJ6ZJlMkltITYlpNHtkqYPeiZh
1PaazuPwJHNRU+dii1EzYBV8va7KNmAsvaHMQ+5/VsrTo1Mwkk9T+9m3jIKl
950a5hu2xraoFWXWjY0hJwi3wuyps9PjV2/fvD49e/fm+PT4++dnz0/fPT89
fX2qntQRtdBlWoGGmE8wiZZwNiJDNNzdIAKSeixh5M4+CWGL6lDssOtmFx55
UnhjS5wi8DxV5KOH41nECrDulVi5jk3I5F1GZLBTTUvRCRzI8Opz+aoqXU4r
7EJhFWcMHFlfItlJQ3lXeAwrcnaRRzgdDpVYmCbab4Ug0rWf2SBtStqUbs2c
2vXFUeFKFQRREE2lGJSCBuFRrViDzbU0OYWD4Sn8m7df38RZLZsNl6XZehAp
cxjbfiOv4tfZfvSpFq7ymWW97Qxz3XajJ9Il4+T7iz4L5leDKrC45U61le0+
cts9R7tRfltb3z9cDPsL1E/fbSNCUGhgF9DPwfsgdRf0/Kze3cP9fRty52Af
/bQbEAxU+dDf/OM/WaAzXvoxhpTdba/ZyzoPt5MVPt3yhpaRdG+nM3exIyjO
pzY217gh40ObwFyWN0HVfEy+vnVb3aYqfiChzfK84xsNZIIo/Mlnz0fa3cW+
rRITLmGwNAlSGtl0CmTwuSixqo/vP4/VXcybtsUZIVx2R6hrYs73XTYimcOg
JoXA6p5KcRQjO5BcrOxa2RrgzTFuxpkxQ3617TbRRUtax6WJPm95CVimNKnx
4vcJ81WvBZmDnD2Zvoc4pofgvnu4j87yWLaH/HbRbwkfPng08kQMzmwxMeXS
PN5+aeDhL3Zrtoz9H3Vttnx+6y0ZuyPs65VbIjT7/ykWfnXw+E6K/eZWis18
LUKpDyKlKoV55GTc9PWinAkAEOtHKwxD4JXeuU8sporSqO4ILGeebJrd5xJf
ME8ux++S/L6O0Z/UhV4C3zw7K4wGtshaWzTAUGAolBi4jgEQT1S93wStKk5N
E1zxoYcPHhw+wmn9yNEjAuJz43Q2Vsh+Uq1FNwuJjPrJdIJ6TPviMKUK+jIp
pBzC0NMlR/eIjw4E/2PaMttCVaZUC7HCJFzKmseIZZjNvj5++geYyDP8VuxS
KL/QCi1sK7rsb8ceTE1h1jAh+tQtt7twRE9Qi2SwPf3sFBJcM397rM11ZAgY
LH4BYymWI2Pzy2ud1ZYMMYnhco4ZFklVK1Qz5UDLc2xsdZgeZ0hhCeNW1RYF
a9SVKWf4MF6/HPxOjiHfe+E9dg+8Eey+66vaVdxGiKJ8A7z8qDqe+kIOHqqu
HcLAWysTvR8naq1ezVVViK8qaQ5ycYEOzDIiCw1GLw97TqHOAN96YZgro9+b
yhDkAh+i4iKYJ9sm7qxIRYKjW9r1bTxW5DQNNbDtFWE8POZ/r13/o/WlGQv8
uEZcH79GUdv2SZjB7QGTv0ORumZmZL8NmySPUW3wtekNB3i2LViSQ8DLOfz/
fY3hZ252tB1HglzxRqoe+sSeeJERa7T0YZOQIwlciYHYXKnsE3fdqSzZO5qC
d8zoPBRW6lG3pK5s8fURMAHz5Ed3JodGxl7s5L7zfIVj5XccjAG+bIvnlIaG
aZAIsw4cfqz7myhGYK7rG71ggnkQxt7XhoiSupKidXKEDF19pFLEHKxISlSo
U+ZufWa2uF+TAu2aQkL9nXFcP2jGaJMHKBXH+ntw+ySqRp/XGOZ+2qPn0dBk
df3pQbMoc5el7mQCw4RXd6auujpFldEvRXKfaj+WC+IPqxudG+eMa57n+7pZ
lMM0DwqO4gjJfmfuXcvB4btCM+0Gl5173vqtGcT5YJ5bXXxRoGK33ahrVUas
iqSJpYuTIHKCy92yZdGxDSxzq0Mim7kzuxDmj+qa5KV3YjeUXE0hurZmcGfK
eoujly8gARuBYt02shldrdA7P+fUVTRoGL0kfPF2LUDz3MhpRjr/Coy2ODnH
4p9sDbVOthmdk8GBpj9xx6mtRXyLJJPn6HSosSzrUAmwA1NQI7KFkGFE0tv0
LeZvX+ld0bSDKzKCrkvKty+ac/o4cXWbBuXTDGZgLrXcN3ecEBUDYf0lQJMM
nfug11F2tOscy+tXyAGfBMFrt9GH2LExv0/k9yuY8jhkA3+zldoiQjTGU2X5
Anw5rxAD1LQUewiZa5/h5beKidhYnaeM46ByTopfKEd1mRiDm9dE4h2xLwUH
xsldgH7EkGpyPwWXieEwDjru3t2b0VaXWHOPlDKt3KIymWOEFAKqy1W5DXCh
CtUIHPvHiMf6+PVItAuvhnUK3OZywxQBk7FJmVks33ShxQh8TiMcwvUKRppz
9uC66bqaGYd0iiBkFPUaA80NzRFM3RN7G3+fDDba2TaOxd5hZLUXON3tsPSg
6W7oJYhfRnZmBmpRXqInSlsB8DNSi3BUi4p2EWbKSl4XN6vjMG5chWkYijNK
tDEXAMYqw00Jm/y+ynCpfFDUy9qDK7OUBBf8dO1+7wLdjp2xBRIioduxZOkS
o1QugdYt6FG8mlgRSatxy26jp2UMNpoem94g1LMkp/4scl1DRTmXomIxoqW/
FRDP3pP8PXGY6D/zjD15HI+MzRE+TYRRo5rle65rZaK7S4cMM1Qn5HoI6vDh
QjgzrLHaZEc1XLCHL45Qs5ctCnmV4kg+DYxRnGhoXmwWmniRavNXzXUYO0NM
epCW8ZJopFH50ZNi7EQ+K2PxKZKT4+xZ2p3lbu3Ue9UeOmiihcxj7rIu70H1
smyr35VPy5elslQ5wfFr3IsB9JPEJHd2j6j5pgbGmgsjVBdnZtbVnZ8drFMy
DimPVIUlO2gJO86V8m9ln5IxNi+GSX4GbVSv5TxfB5sapsC7L6vBkawrh6Xk
u6KFwmjzpI6eMz6TtIh8b3JLxsrf0YFmTZhwT56fvsXyGa+e//712QnXKiVn
Bjs9rO0EJx8o5yFk6t1HJY2ZNUsGZ+AnP3Q1iF6jdQ22X/cRbhUTO8RHFiHg
vTaYzUqZJA1ImjFRHC10scd2KAtylRcm4IUwbhzvmzXN3E5zu67nZxAcs+Vi
jqw8Zw/WIHXkCEI8giEV5K247qaCgNJ+CylsqyFgN5DkQL3ylZXCMO1xvKOB
svUB5NBKMp3FAgnSoUAzeZhStK1G3eeCaQxOleT4iejzgC2h1pHTifB0vdZh
ZNa0VXgppjinu4XIVPcyJNxMMpnTqbgc8tSJ+u9kAVRCR60rKeSTKbFMkrHC
9pYzwwe2zy78wumM7V4zownOqV9VLgNk18phEa60x5M3p7cd4p6UZPCNSpRF
pP3s9TXKjkbp6EtzUr1XsI77cf+Wr+StwDrSFM0BmLLT2uqGaafuUS3Jp1hI
0nyd5ZOxyTc6K+2L2HS1lY/oBzD85MNk6Y2ukEggVjyNCl85a8Gy2pIMSAUC
sX3OZlUuz7n7DOxmfDh28lxRO82LDQvWcyocT0kStvVstgRsjndd3oiHjOx2
WZFVDamxdh336Ks7jrbhmSA2FvGvBqZFQg5l0vF3XnEmBeeD+OAQCA1qj+JD
PdiIJfMla2mV0qDfd6VAWQqqiBjtusilvawEl9Rd4USlkZIuzItG0qCwuupo
oha5sHl3qqRBbxormGHx2YH+K2nYaXUVAeelIlfXYyVkPGtjpTmpEXFH25sY
WSOFcFaK5qyhmEaCTqldxd8pV5IKoxUvUnyt5pcRg8uiETwAp6D75HBiofQ7
YUTbsMu5y4wdxL6zRhIZHRSP0AVGgIRLXttQSubNndl2ScWdYXpXlnqHPTXh
xkyGx8LdyPP+CvjYd5gOQc+eYsAAS0Txt+VKvWkbBBleaI0ajWG+vgZ6AiNu
DVdshFpDhMiaJ4yr31GUv1uzrtBiCxHU79ZsZFhQyravuWaMj2NzFnI9eUMU
gj/cNeWIEiA7zpuWQHA6Itz6kGdbanFbJELNoBx+UHwcnTl84NfNBd6QRmL7
zmGDAmVZIuoVfcVSkkFLPcEwV6v6X1x73nVbL8u2ligf1TQgzpwh1Arxu2It
x4AIGitMKE4O9nFRGTpzfEyizVXHtRo3IrZKS0FwsJQi0lC1WxDvcOyiAaoe
5qMtMystchpK4MMCuAw/2XJTHFJF0mmdtyYol4mcky8hOV4p8hJbSPN0OPRi
Soqr4YlvhoZdOEBXVJ/vPebmAc0Dz5s7jxrMkZV+zPLv60vW8qinm+wydVfF
cI0HoA36cxPjm3OPstjLh3AwKXB3KCK0pZk2E80gxsam646uDTJWQa+M0UWQ
fSIQEfrvCAK1RIClRvYdxyNYJVduk+TsLrtFSd0e3FCTjtdSUmtryYCk6JdF
iHUjLOYHN8xKlk6C6TIkQDxJXGNIu4vXhoUEViguxRU/a9iQitC1tJn6RMqM
2aej+Tzo85djZyRyn4a9SYtpmO49Mtt1Jl8iZymlzx7FYSaxFLlaXjwhXKDv
Ku5T2fkKMD8Aq4bv/UDGh1Z4+3R4+eQaoUSoo5VRYSiSf2P+kdihXS6h69XE
2HnNis4wglsIIanChzoytfOjk3QOvtRfquIgyXx3bB+udMrAXHo5OzckaBNt
QcNCVJkiRY3wUsQ+qKOurAXuIIq1pGAjqewc8uEgKNhAwKvTecSva0A7i1HF
/Oljr36jGMe88dvW6FylBNhMyopbfwfFqElrCZXdVQwOSbV4FfguLvQGdWbY
tkqyyhjXgKChKRt8w4lJuhHC/0fvrqVvRQ4jg5B9l2y6D/6X/F2KCkgbcVEX
CMMUg5HAd1G4Xm64loIGGWjSFsUgJVstcqv3geIjcIhl06oLH1+0qTH78WIq
7Xc+F2LBmVp+OvEUtj4oIH97kv+48TFBkmS3vl5x+jQdC+e1I3Sxdlaaw5VI
+eLESg9e4nOxLyF8+oryIKu2QmosbzZ9mfwsMe0uOMYhPbtyg0N6KqAxhlOd
M8s617vkSioEV4ReJ0+8W9c+QnfkIqcP8OBSGXXb8yPUNl6YJye/syurCy7l
UGq5E9ygBBjuxt13D0mJCpNRCVUZJmbFTiDijNIkQJT+a1Dcp+q84CPDqlBC
91LNR8r0uSM1U9303PS6qVYdSKtGzRHvLPDF5ZobD5KThCgIOd6iQlaJTbBT
TTGtc4qzDylbl4WmpcvuCDtSe2ySXbUWxKlWGPOE6+N44PmNQt2DlxTuCaHX
pkio8xi0s0ugzCUV1Hf1Sw0pGTxGjAchbadO0YSJverhdYPFOXqqPgD7n/WO
CFgmlt1PUtyo1LoqxEXtHset7EKstakVlLRqtd0xUaTGLhh1EyJEtzR6kDvG
8NFB/wuLwagqOrLTUxyTrgrZfVrpO3kChWReaY4R4aadaC3MwmuxlpsbIjb1
remWpoQ0q7t4q2YnLm6CXf012b25+pFovda7IysFKfJzRHDC/3uL7B7+e4p4
TcKKZFg+5bBaxE97BW0lY9FfmlXig/YZiBth76XDBaaAvuMxTSKM6qs0HwYO
qTJuh+ddsFrxGtH2ZIys+pBnSTo3SaaXZljHoQqkJK8toCWnAzYV0z+L4gdq
45BcJobfaHaNbFuZ6aNYuEXNAGrqQZdNm4+pbRNvnA6HrHHw2xSHyRlm6v3h
ya7jQYa8yCKlIdStnHVN3SpP+ojrt0YVGZFSgF6Ly7rqgg03T/PuUwMSf2tH
r5oJsgdYX9SYs8YY0Yozp4aqXB67e1eloGGK6daSSlpFj8+H9kBFJzGENSfq
y+ZfBEd5fIrrkmAJmueayj0G4MdmJVhLKsJkXF+03TFGfquUEq5i5pDTX6Ne
SPwa9ayEgPKQNkORrZa+uYQcMZUKZXcVJp11VyIMT7jQGY+WePxGGRdnWZwY
2ufj17nmTKm1W3lUrDiNhipiR4EsSBendWv/+pJN5lCtCGHWYtXvZYppFKmr
rh3nIiA5QmoX9wzWyHOs8844Ez0GGTZKFuekO07MmW52Be+qiyb1RjUXF5Tz
ZC5/112OPWvJZqQaxwtNsJKyp/D766b9aeJWqjtHsHNWqUdBV+qSXDbz6PqB
4S/gnsQfgGqkiyyKP0qt+HGg3sB3KUqlXTkYnE4wQZPjnMUgju431RPyTInX
q4X/Say9VhJrQQ2EnWsj68WSjuQLpS+a7zvxDQzIENEIwGNgHzZYCnfuISip
nzPgWDqfiflV8FF31ahmosEK6Z4RjoYa6cZ5+/5FhkADXVPY1a38UT0BE/Zu
oVKLaPDVvFz5OpDsgx3dKSKv274WfDrRyg2CleMx1if2pWC+I8veNukgL94+
qcQHgoxdlFQuQaLqqddpFIlsA7oC92qPvTl9ffb66euX7348ef2SgtwuvK0x
jRIeTXCuAy8I9jWCh1LPiqb7+OA0l3/HpnItlmvRUpDUooayiSldpLQmQgU2
YiUJIsnoqOZWWNg6eV8VjrKwF7F07EJpOzACKI5axZQxdSQ6pVHUABD/U+uC
iHae5piJvUel5tNl89ySbFIhYcIqWTBh5RBeVPONl7+3fSPngzJ9JmTVPeOk
Ls1xNLltV/mKPE1JCHefTqAtE28KBg+T/d0bbESSTunLEqHzir9hitjITMSP
5HJ7B8Enou0eAeLXLtvOCMVG1/eS/d723XkTqHEBBfzKYjzMM3JK3nSgqv/i
vLNer4WrYviCck64ZxHykAjBZ13NAQjlVlBFYLatCeotVlFzQbEEo0t2YMJR
tXVD2Y/AkKtuhsj8ccrCtbIwlZxpan8LljUiHCjQg3pe3S33fEMI+6nLpUxN
Ac7TrN/H2i+k+Muc8RvSYLcLiTc4+TrLdVDqYSjnkkZwx4rkqXRfq7R0ANHL
IFip5jaXCpXqpwLF1IqhK72yyGye2+RhOiFuBrvbnRe/u1nNrtpmVf+Vp2f7
4qIeXHeDlfuAmzRSVYXFa97RGnlE2qI6z0ZWdTass5NlDwLtDr8zQnRxCtih
GDsjlRF0ANTPCmY2JzzNN9+f/UCtFZBV35BDMR9NFlSGdP6Wf4ZN+9KRVZlm
PCPb+WeNVZUoshWmC1DbOZ9sK+0cFJhRqopsmfcr4RDWrtKcJCPHlAdxxj5H
ijF3DlDiwn6mWaaN63goUctsLIrXXrRmC6cx2gHuc8IwIwvejwoJ9ozSyLr4
UtoMgdpNX7g19Uq8jWm6EPozYJ6dWR/sf9LeLKMn0jXq8A8E07bOxyojftNF
50ZsNV5usLX5+/yeKOWcyhvYmycpfjE2h5R+JMeLewJ7CxushwpTQcQE4sgf
01O0MUfXSJbjyO2dBFtQTO4D1k6Q0VpajnBnlJwkzM1iIPXSYAimypQZzUbH
INv9vRq5emuSOQahYWQ9RPH1gulPO6lsIflov7CHi92huqMkxq5g+mizlFS6
78yAcb9cVTIy4YBouslJvW11rZdLueOl5hMTQJo6qScLeuK6zuBLiY6Dw/Hm
jZz6tfN0TkQ7CTRGihrgFXzWMBZYNMcsGtpO28lKJBLrYqfaKOmxp4XHDq4G
TEzI1XYZTL2WuJndN7hpVrwAOBEc3aq5BuvwkqLAHHQZa5I5fk+kn88cWB2C
bz2L72qthpl9QyvFCfFTRZpof4se/YLq/2faeeaKm2zZqdi6RrYrJYvsSNEN
YQeaVvEZHm/gKkSEALrjkFTb9v1J0g8DzyaTH/WhZBYjZMXFU/IdSUkILi03
OQATEelYUevG/GJWTtkbqQw/iMLT5KSCfj5no5Mrm1pw2cW5a5+12tO2jQ5+
o0kUxm1Or72lpuMup7MI/+Z9Lsb2OfzifVb3eO8Fs36oC2PKzWdyiAHzjIJL
fsQqlLDUscttDlJuR4hXN1WqRA2SdoWDPWNzRstwUXTB6pTlOy+SCJkPv2Wx
iCtKouw4mEBg+c4XAMNn2knAmBbHZrlQCAWhyw3+o5pHW1LVJXHucW4VASlQ
tiE6c4rozCDADSUckDc13ARMVm48Siez+3LLxbFPr8zr0WB9EJzMREKCYyfK
bp41ls9tScfSEhRWO/9C+GTmeCUmqW2U85OJPRL5V+Qzq6ieysoVMMAfS6IQ
WOnIcxmyWVOp/tIcZhpvjFrr1PUbQG5vIWKNVFvjNnQXaRfu/opr4cblMgMA
tVd+6UsiJ8oSaaJUQIAFmB003ZwZUlPs5oDuMdDqc4A1OcLzrTK1Tahcdpyn
zEETLPeFF7aLjsA3Cm/lTFQgtPUaPcV5l+Ko3VNw0GZdd0FNp7mgusvB1ISM
msXcTrEmhP+lODmoV5SLY9vH1API0GXr1XTdpcV2kIra90jRGi2ihAjNU5FO
LZ0rNXnyJjgn2z0kTcZVRI8y7jtpmSL4/R0Sb47uBRBdjwECJcZOFqJeCyli
KCkNMJrU7V7lgwpeMnE1jZRF5jJRYrGOnpIrfO0jYAGLLVOlIc1isYHTNpAa
O5w3sw13zOKSMPELhNtMzoCsuCR4hy766gMlx4JC8hn1sJL+4DmmRFZMSt5i
ESFzhC+Qht7zJqa8YZES2PNz39VbOwXzj9FJqciFkMUdYy/cijMUB6OpkVD2
zi14chGHsvzGBJFAGAlUM/OSYkmpEbSKxBiyViLavZyE3RuZC8UN2Sv68Wtd
19CngL+RXlUVM4Todt3mbJU6GDnTHgMnRoypux0pq43VqULm0i1eRP6c846O
efiyKn36rOM/xPRdKy6O9/jgtI7ugU7CpCy91NDLIZ1xRQ3BFqyeaQftlQzE
1ZFW7CwQxm918NMjkOSaLBkGy4biieDZdN7eHp7FJGSu9+miXv0kJyhNsS42
LXF7pJtNJ503T+/wUOgX2buZ1qk0Xzp3AELSChzV9k77lezmXlJgPvGVmbLg
4SSc+Rm2YF3TuU7ScSbitHz27OTV71VbwaP5Sq8o/+wrwcYBu0gUG3rU32h5
nNBmQ5uSMFLpo4HqEH6VcgT93JhZavA804DLZAqiaXyVOyjh3S2iMfLDqZeS
x05BL1UmZJ2YTYin9z0i9Ky0p1uCKoUCb+MkPbclI/wwhKQZhMst1rYPv4lR
hWHgKcF9U79pxrygOT0SU8HlEueXjCEiXeS05q90BB2GVV0L9wQ2sZXcX+NT
aAIlQtvtb9iypWlQIAfzJBugOba2sknK62K7a49p18m4Cavu2kqmo+1aIvAp
vY8PYoZ2RcfxpQaTPrFU2qCGpYfbTGczuqWOuySuE8brkA3gPWS2FpJ8pESv
NZENma85ZXPppC9HmRENHHbf5N/HatGZwY93kO0YgYznfGxMtLjyjNSN1/79
OYMM/KR4n+SYKB16POowLmKzsVN/tBabukuNnir7/TkVDV6lEf3eha5TB9uA
cYZtcgOVSlnJ3HLKIrmfpOBC1r0t1DDwnMPOt3200yNmUpmVK4CZzJ7czNxP
ZMuG74zt+G6IcWp3XRtLsRR70kFet2ntGtUxfGUClM1gAmhla2txwWYExREZ
lNMqLA0rzWrep6ZBWpQezw0W7n6Rd4XBef4EK0ubLpfpdtYMwDULCk/5vCKH
hxTwRurOtoBkqJlnV4lzsY9hAsvmakZSogI597t+yu6ZakzHl9Ru9vprDNPN
I9aUw6xD9zl4iCzUZKXSHqTsKpunafVtpW1yo2p+zLXYcZnK5AfeW1vriIGS
+Qo4CiduK2VfiYPETHwzufZ+0cV2uXW+MTbF50NbSfTcS0Zbpa/oPLT9ktI8
4oBjsyyy8dQVRBC1bUn2GUaPed/XVBabpLiCI98KabPN/gaXGhOhje6B9XAO
qFSzG2AgdBSUjllWF6Vpc7GfeFKa/4rWLgyJugRhqrsEVI2XXtWOq6brtfp4
lanNHiKLxk9MqlVPn02Q41OjPgA92qDZ5Zx/yrzsfbPYLKu0MU5ekc0ghWYj
S2IxUMCA6YxImJ9THu6dgYktpmLfh5w4XQMzXD3rTSEpQ6XgB2lgkmmW0W1I
Hx0RLdvDl4Hvqp4hJxs7FFAeqI71CNgBg5vKHck3y+AULVBK5801TPIaNLkr
O4g1Ing6TnaZO08v+5h3fvqeR/ojvT0JxPy1lV0hrexOnz99/ePz0z8xJlpK
K5ZWOLOIrQZSdoMpy12e1D7SF1eoxLCt3ABhg6A3zvkRKslVtITQOQGp6cW3
jcjubLFg8yMPZ3WOMKdx60WXlY0qYoFaimxI0f60OZQgxgc7RI7nBOUBArC7
XQLephl78vc1TClVDCiISa1mgBk3EORY9edwtFXxmmV4caw39ePXA7FOkld+
6q60C5wj4gzMLYIRj/oPb6juNluu8yDNyBOJIsDODBnASpxVEWtbEpXRHRk0
RhFrf54Zdi6CMPJRtUIiaRicyVwpnjFagr7Nszo4s++lIxESLTa9w6Va041j
ydK1jXI5uilx0IRTIUFfQS978JnxqLn1NypMs1eMUOhCMG/jUMZNlrJPTeK5
rfac0ywZ/yAictTL4yuWBLKPfamwaxA0RJ0MmdACqpkHj3QIXBRF8zdeZx/b
pDIv+YtdoVrCWsQCu4symsWZIswBxGSrw4gGQzGi4S1GpXTVKPbfsitv+d7E
lG4KuoRs9YZROTeYiriiB/VtRAdldYq0SA6hSSgp7zknLJfRXILkx6JQoENv
R9OFiBQbNIrIa94Ac1XfIDDiZukUziRU6LpFeFCjYmrkBrHy7fLrXHom7mdI
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
9VyVN8sgMEfk9zQlKAXga7sYEZ0kDHOmkEc6gfPF03aNAntcwIuTIJNGADVs
tfIZxdcbqrU0grtS0g6vatcYEkYJSBO0FEttO28qdgSTo6NlMN9H1jb8pMZ8
uTshkF+2oN+6COs+m8yWrDdUQgIdLIr5NXmpnoIQMkwOzUawLa7qhVT2JGV8
wuYUPzofXTXkSFiyN3O8PCcJqTkTVtuCNeXW6uXYCQXG+opMeEhhFi83QyQb
YB/+zLuaCs6mi59Vo00PSv8fVwd6Zd3nB79MSkHLNv1ZR/o+2JfvWdi+h4WD
vj2iGF5prW1mrWkzNtLPam0ra40q777XS/SzW9uWWtbvya4kBSSb389rbSc8
wITrQaS9V8v517a2Gx6gEbKP631LCXy/vm974QEDJL8HIPk94iy/qrX98EDo
1ntYBe/D4Z5NuaT2r2rtWbamy6lf0ke3RvWYk/OmlZiFU2OlPtCWh8T3U7dU
h7lHcfBh3Vx1SAO8f4XG4F7ya1WGpIl/6gz/WXUGWuDHawqvkMFz4/SE87DV
LySzx/KzsiC45dZoaia548+FfvSanEgwtMpMG4gqCMdmUNPjN1JXfv19zGdW
r+SypNLrXBXVw28WKNgUNy6i2wRcke27+fo11J4b2T8AJ4xGy5twHorOY68P
9bnX4Y/XA0Ri8uHtveVLt4a93+e6gtMLHrz/H9INut+L3HbvN1B3T9/ezmRf
rRhblmkqt8Km+0UGzk6eTpll8jetan3Lz52DYnfmVQKsKRL7oda33S96sNjx
O+9J7czRqtZ3fP8yiHUyMwJ1jL6Px7S+223dw6dj36W2ulInRmilvI+9aate
s+enqAuItu9ecjJ/ODeM6U3LV65qfd+33kX32nffCOTVo1fjQqxq/ZlrfTWM
VQ803X19GM5VrT93ra9GjYbverCbF1InaXXfD1zrPTHMzswYKCzm+97T+teu
9dU4y/Dd1LKOekGVK4XCxsaQ5e7PiaRO/0Rx2L+wfa2b6uiuhge0R68UevUx
CMjyHN7oL5j6iXgkkV1HF5bRvFDdHuAdFb+UiHBgmU/uqmn5bXXdTBbkkfy3
0L/y6K6eXlbzQXlEZZRu68WCYUsHk7u2rcofm8mH9exNRDZ5yQEvVjSqCakY
V81UCHJtkcfz6tbTLiDENbsuKExPet+/Ndflyaz9QE/+9NPhwcmbPw1fHZ4e
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

-->

</rfc>

