<?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.2 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-quic-http-04" category="std">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:quic@ietf.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><front>
    <title abbrev="HTTP over QUIC">Hypertext Transfer Protocol (HTTP) over QUIC</title>

    <author initials="M." surname="Bishop" fullname="Mike Bishop" role="editor">
      <organization>Microsoft</organization>
      <address>
        <email>Michael.Bishop@microsoft.com</email>
      </address>
    </author>

    <date year="2017" month="6" day="13"/>

    <area>Transport</area>
    <workgroup>QUIC</workgroup>
    

    <abstract>


<t>The QUIC transport protocol has several features that are desirable in a
transport for HTTP, such as stream multiplexing, per-stream flow control, and
low-latency connection establishment.  This document describes a mapping of HTTP
semantics over QUIC.  This document also identifies HTTP/2 features that are
subsumed by QUIC, and describes how HTTP/2 extensions can be ported to QUIC.</t>



    </abstract>


    <note title="Note to Readers">


<t>Discussion of this draft takes place on the QUIC working group mailing list
(quic@ietf.org), which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=quic">https://mailarchive.ietf.org/arch/search/?email_list=quic</eref>.</t>

<t>Working Group information can be found at <eref target="https://github.com/quicwg">https://github.com/quicwg</eref>; source
code and issues list for this draft can be found at
<eref target="https://github.com/quicwg/base-drafts/labels/http">https://github.com/quicwg/base-drafts/labels/http</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>The QUIC transport protocol has several features that are desirable in a
transport for HTTP, such as stream multiplexing, per-stream flow control, and
low-latency connection establishment. This document describes a mapping of HTTP
semantics over QUIC, drawing heavily on the existing TCP mapping, HTTP/2.
Specifically, this document identifies HTTP/2 features that are subsumed by
QUIC, and describes how the other features can be implemented atop QUIC.</t>

<t>QUIC is described in <xref target="QUIC-TRANSPORT"/>.  For a full description of HTTP/2, see
<xref target="RFC7540"/>.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<t>The words “MUST”, “MUST NOT”, “SHOULD”, and “MAY” are used in this document.
It’s not shouting; when they are capitalized, they have the special meaning
defined in <xref target="RFC2119"/>.</t>

</section>
</section>
<section anchor="quic-advertisement" title="QUIC Advertisement">

<t>An HTTP origin advertises the availability of an equivalent HTTP/QUIC endpoint
via the Alt-Svc HTTP response header or the HTTP/2 ALTSVC frame (<xref target="RFC7838"/>),
using the ALPN token defined in <xref target="connection-establishment"/>.</t>

<t>For example, an origin could indicate in an HTTP/1.1 or HTTP/2 response that
HTTP/QUIC was available on UDP port 50781 at the same hostname by including the
following header in any response:</t>

<figure><artwork type="example"><![CDATA[
Alt-Svc: hq=":50781"
]]></artwork></figure>

<t>On receipt of an Alt-Svc header indicating HTTP/QUIC support, a client MAY
attempt to establish a QUIC connection to the indicated host and port and, if
successful, send HTTP requests using the mapping described in this document.</t>

<t>Connectivity problems (e.g. firewall blocking UDP) can result in QUIC connection
establishment failure, in which case the client SHOULD continue using the
existing connection or try another alternative endpoint offered by the origin.</t>

<t>Servers MAY serve HTTP/QUIC on any UDP port.  Servers MUST use the same port
across all IP addresses that serve a single domain, and SHOULD NOT change this
port.</t>

<section anchor="alt-svc-version-hint" title="QUIC Version Hints">

<t>This document defines the “quic” parameter for Alt-Svc, which MAY be used to
provide version-negotiation hints to HTTP/QUIC clients. QUIC versions are
four-octet sequences with no additional constraints on format. Syntax:</t>

<figure><artwork type="abnf"><![CDATA[
quic = version-number
version-number = 1*8HEXDIG; hex-encoded QUIC version
]]></artwork></figure>

<t>Leading zeros SHOULD be omitted for brevity.  When multiple versions are
supported, the “quic” parameter MAY be repeated multiple times in a single
Alt-Svc entry.  For example, if a server supported both version 0x00000001 and
the version rendered in ASCII as “Q034”, it could specify the following header:</t>

<figure><artwork type="example"><![CDATA[
Alt-Svc: hq=":49288";quic=1;quic=51303334
]]></artwork></figure>

<t>Where multiple versions are listed, the order of the values reflects the
server’s preference (with the first value being the most preferred version).
Origins SHOULD list only versions which are supported by the alternative, but
MAY omit supported versions for any reason.</t>

</section>
</section>
<section anchor="connection-establishment" title="Connection Establishment">

<t>HTTP/QUIC connections are established as described in <xref target="QUIC-TRANSPORT"/>. During
connection establishment, HTTP/QUIC support is indicated by selecting the ALPN
token “hq” in the crypto handshake.</t>

<t>While connection-level options pertaining to the core QUIC protocol are set in
the initial crypto handshake, HTTP-specific settings are conveyed
in the SETTINGS frame. After the QUIC connection is established, a SETTINGS
frame (<xref target="frame-settings"/>) MUST be sent as the initial frame of the HTTP control
stream (Stream ID 1, see <xref target="stream-mapping"/>).  The server MUST NOT send data on
any other stream until the client’s SETTINGS frame has been received.</t>

<section anchor="draft-version-identification" title="Draft Version Identification">

<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>Only implementations of the final, published RFC can identify themselves as
“hq”. Until such an RFC exists, implementations MUST NOT identify themselves
using this string.</t>

<t>Implementations of draft versions of the protocol MUST add the string “-“ and
the corresponding draft number to the identifier. For example,
draft-ietf-quic-http-01 is identified using the string “hq-01”.</t>

<t>Non-compatible experiments that are based on these draft versions MUST append
the string “-“ and an experiment name to the identifier. For example, an
experimental implementation based on draft-ietf-quic-http-09 which reserves an
extra stream for unsolicited transmission of 1980s pop music might identify
itself as “hq-09-rickroll”. Note that any label MUST conform to the “token”
syntax defined in Section 3.2.6 of <xref target="RFC7230"></xref>. Experimenters are encouraged to
coordinate their experiments on the quic@ietf.org mailing list.</t>

</section>
</section>
<section anchor="stream-mapping" title="Stream Mapping and Usage">

<t>A QUIC stream provides reliable in-order delivery of bytes, but makes no
guarantees about order of delivery with regard to bytes on other streams. On the
wire, data is framed into QUIC STREAM frames, but this framing is invisible to
the HTTP framing layer. A QUIC receiver buffers and orders received STREAM
frames, exposing the data contained within as a reliable byte stream to the
application.</t>

<t>QUIC reserves Stream 0 for crypto operations (the handshake, crypto config
updates). Stream 1 is reserved for sending and receiving HTTP control frames,
and is analogous to HTTP/2’s Stream 0.  This connection control stream is
considered critical to the HTTP connection.  If the connection control stream is
closed for any reason, this MUST be treated as a connection error of type
QUIC_CLOSED_CRITICAL_STREAM.</t>

<t>When HTTP headers and data are sent over QUIC, the QUIC layer handles most of
the stream management. An HTTP request/response consumes a pair of streams: This
means that the client’s first request occurs on QUIC streams 3 and 5, the second
on stream 7 and 9, and so on. The server’s first push consumes streams 2 and 4.
This amounts to the second least-significant bit differentiating the two streams
in a request.</t>

<t>The lower-numbered stream is called the message control stream and carries
frames related to the request/response, including HEADERS. The higher-numbered
stream is the data stream and carries the request/response body with no
additional framing. Note that a request or response without a body will cause
this stream to be half-closed in the corresponding direction without
transferring data.</t>

<t>Because the message control stream contains HPACK data which manipulates
connection-level state, the message control stream MUST NOT be closed with a
stream-level error.  If an implementation chooses to reject a request with a
QUIC error code, it MUST trigger a QUIC RST_STREAM on the data stream only.  An
implementation MAY close (FIN) a message control stream without completing a
full HTTP message if the data stream has been abruptly closed.  Data on message
control streams MUST be fully consumed, or the connection terminated.</t>

<t>All message control streams are considered critical to the HTTP connection.  If
a message control stream is terminated abruptly for any reason, this MUST be
treated as a connection error of type HTTP_RST_CONTROL_STREAM.  When a message
control stream terminates cleanly, if the last frame on the stream was
truncated, this MUST be treated as a connection error (see HTTP_MALFORMED_* in
<xref target="http-error-codes"/>).</t>

<t>Pairs of streams must be utilized sequentially, with no gaps.  The data stream
is opened at the same time as the message control stream is opened and is closed
after transferring the body.  The data stream is closed immediately after
sending the request headers if there is no body.</t>

<t>HTTP does not need to do any separate multiplexing when using QUIC - data sent
over a QUIC stream always maps to a particular HTTP transaction. Requests and
responses are considered complete when the corresponding QUIC streams are closed
in the appropriate direction.</t>

<section anchor="stream-1-connection-control-stream" title="Stream 1: Connection Control Stream">

<t>Since most connection-level concerns will be managed by QUIC, the primary use of
Stream 1 will be for the SETTINGS frame when the connection opens and for
PRIORITY frames subsequently.</t>

</section>
<section anchor="http-message-exchanges" title="HTTP Message Exchanges">

<t>A client sends an HTTP request on a new pair of QUIC streams. A server sends an
HTTP response on the same streams as the request.</t>

<t>An HTTP message (request or response) consists of:</t>

<t><list style="numbers">
  <t>one header block (see <xref target="frame-headers"/>) on the control stream containing the
message headers (see <xref target="RFC7230"/>, Section 3.2),</t>
  <t>the payload body (see <xref target="RFC7230"/>, Section 3.3), sent on the data stream,</t>
  <t>optionally, one header block on the control stream containing the
trailer-part, if present (see <xref target="RFC7230"/>, Section 4.1.2).</t>
</list></t>

<t>In addition, prior to sending the message header block indicated above, a
response may contain zero or more header blocks on the control stream containing
the message headers of informational (1xx) HTTP responses (see <xref target="RFC7230"/>,
Section 3.2 and <xref target="RFC7231"/>, Section 6.2).</t>

<t>The data stream MUST be half-closed immediately after the transfer of the body.
If the message does not contain a body, the corresponding data stream MUST still
be half-closed without transferring any data. The “chunked” transfer encoding
defined in Section 4.1 of <xref target="RFC7230"/> MUST NOT be used.</t>

<t>Trailing header fields are carried in an additional header block on the message
control stream. Such a header block is a sequence of HEADERS frames with End
Header Block set on the last frame. Senders MUST send only one header block in
the trailers section; receivers MUST decode any subsequent header blocks in
order to maintain HPACK decoder state, but the resulting output MUST be
discarded.</t>

<t>An HTTP request/response exchange fully consumes a pair of streams. After
sending a request, a client closes the streams for sending; after sending a
response, the server closes its streams for sending and the QUIC streams are
fully closed.</t>

<t>A server can send a complete response prior to the client sending an entire
request if the response does not depend on any portion of the request that has
not been sent and received. When this is true, a server MAY request that the
client abort transmission of a request without error by sending a RST_STREAM
with an error code of NO_ERROR after sending a complete response and closing its
stream. Clients MUST NOT discard responses as a result of receiving such a
RST_STREAM, though clients can always discard responses at their discretion for
other reasons.</t>

<section anchor="header-compression" title="Header Compression">

<t>HTTP/QUIC uses HPACK header compression as described in <xref target="RFC7541"/>. HPACK was
designed for HTTP/2 with the assumption of in-order delivery such as that
provided by TCP. A sequence of encoded header blocks must arrive (and be
decoded) at an endpoint in the same order in which they were encoded. This
ensures that the dynamic state at the two endpoints remains in sync.</t>

<t>QUIC streams provide in-order delivery of data sent on those streams, but there
are no guarantees about order of delivery between streams. To achieve in-order
delivery of HEADERS frames in QUIC, the HPACK-bearing frames contain a counter
which can be used to ensure in-order processing. Data (request/response bodies)
which arrive out of order are buffered until the corresponding HEADERS arrive.</t>

<t>This does introduce head-of-line blocking: if the packet containing HEADERS for
stream N is lost or reordered then the HEADERS for stream N+4 cannot be
processed until it has been retransmitted successfully, even though the HEADERS
for stream N+4 may have arrived.</t>

<t><list style="hanging">
  <t hangText='DISCUSS:'>
  Keep HPACK with HOLB? Redesign HPACK to be order-invariant? How much
do we need to retain compatibility with HTTP/2’s HPACK?</t>
</list></t>

</section>
<section anchor="the-connect-method" title="The CONNECT Method">

<t>The pseudo-method CONNECT (<xref target="RFC7231"/>, Section 4.3.6) is primarily used with
HTTP proxies to establish a TLS session with an origin server for the purposes
of interacting with “https” resources. In HTTP/1.x, CONNECT is used to convert
an entire HTTP connection into a tunnel to a remote host. In HTTP/2, the CONNECT
method is used to establish a tunnel over a single HTTP/2 stream to a remote
host for similar purposes.</t>

<t>A CONNECT request in HTTP/QUIC functions in the same manner as in HTTP/2. The
request MUST be formatted as described in <xref target="RFC7540"/>, Section 8.3. A CONNECT
request that does not conform to these restrictions is malformed. The message
data stream MUST NOT be closed at the end of the request.</t>

<t>A proxy that supports CONNECT establishes a TCP connection (<xref target="RFC0793"/>) to the
server identified in the “:authority” pseudo-header field. Once this connection
is successfully established, the proxy sends a HEADERS frame containing a 2xx
series status code to the client, as defined in <xref target="RFC7231"/>, Section 4.3.6, on
the message control stream.</t>

<t>All QUIC STREAM frames on the message data stream correspond to data sent on the
TCP connection. Any QUIC STREAM frame sent by the client is transmitted by the
proxy to the TCP server; data received from the TCP server is written to the
data stream by the proxy. Note that the size and number of TCP segments is not
guaranteed to map predictably to the size and number of QUIC STREAM frames.</t>

<t>The TCP connection can be closed by either peer. When the client half-closes the
data stream, the proxy will set the FIN bit on its connection to the TCP server.
When the proxy receives a packet with the FIN bit set, it will half-close the
corresponding data stream. TCP connections which remain half-closed in a single
direction are not invalid, but are often handled poorly by servers, so clients
SHOULD NOT half-close connections on which they are still expecting data.</t>

<t>A TCP connection error is signaled with RST_STREAM. A proxy treats any error in
the TCP connection, which includes receiving a TCP segment with the RST bit set,
as a stream error of type HTTP_CONNECT_ERROR (<xref target="http-error-codes"/>).
Correspondingly, a proxy MUST send a TCP segment with the RST bit set if it
detects an error with the stream or the QUIC connection.</t>

</section>
</section>
<section anchor="priority" title="Stream Priorities">

<t>HTTP/QUIC uses the priority scheme described in <xref target="RFC7540"/> Section 5.3. In
this priority scheme, a given stream can be designated as dependent upon another
stream, which expresses the preference that the latter stream (the “parent”
stream) be allocated resources before the former stream (the “dependent”
stream). Taken together, the dependencies across all streams in a connection
form a dependency tree. The structure of the dependency tree changes as PRIORITY
frames add, remove, or change the dependency links between streams.</t>

<t>For consistency’s sake, all PRIORITY frames MUST refer to the message control
stream of the dependent request, not the data stream.</t>

</section>
<section anchor="server-push" title="Server Push">

<t>HTTP/QUIC supports server push as described in <xref target="RFC7540"/>. During connection
establishment, the client indicates whether it is willing to receive server
pushes via the SETTINGS_DISABLE_PUSH setting in the SETTINGS frame (see
<xref target="connection-establishment"/>), which defaults to 1 (true).</t>

<t>As with server push for HTTP/2, the server initiates a server push by sending a
PUSH_PROMISE frame containing the Stream ID of the stream to be pushed, as well
as request header fields attributed to the request. The PUSH_PROMISE frame is
sent on the control stream of the associated (client-initiated) request, while
the Promised Stream ID field specifies the Stream ID of the control stream for
the server-initiated request.</t>

<t>The server push response is conveyed in the same way as a non-server-push
response, with response headers and (if present) trailers carried by HEADERS
frames sent on the control stream, and response body (if any) sent via the
corresponding data stream.</t>

</section>
</section>
<section anchor="http-framing-layer" title="HTTP Framing Layer">

<t>Frames are used only on the connection (stream 1) and message (streams 3, 7,
etc.) control streams. Other streams carry data payload and are not framed at
the HTTP layer.</t>

<t>This section describes HTTP framing in QUIC and highlights some differences from
HTTP/2 framing.  For more detail on differences from HTTP/2, see <xref target="h2-frames"/>.</t>

<section anchor="frame-layout" title="Frame Layout">

<t>All frames have the following format:</t>

<figure title="HTTP/QUIC frame format" anchor="fig-frame"><artwork type="drawing"><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |           Length (16)         |     Type (8)  |   Flags (8)   |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       Frame Payload (*)                     ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

</section>
<section anchor="frames" title="Frame Definitions">

<section anchor="frame-headers" title="HEADERS">

<t>The HEADERS frame (type=0x1) is used to carry part of a header set, compressed
using HPACK <xref target="RFC7541"/>.</t>

<t>One flag is defined:</t>

<t><list style="hanging">
  <t hangText='End Header Block (0x4):'>
  This frame concludes a header block.</t>
</list></t>

<t>A HEADERS frame with any other flags set MUST be treated as a connection error
of type HTTP_MALFORMED_HEADERS.</t>

<figure title="HEADERS frame payload" anchor="fig-headers"><artwork type="drawing"><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |       Sequence? (16)          |    Header Block Fragment (*)...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The HEADERS frame payload has the following fields:</t>

<t><list style="hanging">
  <t hangText='Sequence Number:'>
  Present only on the first frame of a header block sequence. This MUST
  be set to zero on the first header block sequence, and incremented on
  each header block.</t>
</list></t>

<t>The next frame on the same stream after a HEADERS frame without the EHB flag set
MUST be another HEADERS frame. A receiver MUST treat the receipt of any other
type of frame as a stream error of type HTTP_INTERRUPTED_HEADERS. (Note that
QUIC can intersperse data from other streams between frames, or even during
transmission of frames, so multiplexing is not blocked by this requirement.)</t>

<t>A full header block is contained in a sequence of zero or more HEADERS frames
without EHB set, followed by a HEADERS frame with EHB set.</t>

<t>On receipt, header blocks (HEADERS, PUSH_PROMISE) MUST be processed by the HPACK
decoder in sequence. If a block is missing, all subsequent HPACK frames MUST be
held until it arrives, or the connection terminated.</t>

<t>When the Sequence counter reaches its maximum value (0xFFFF), the next increment
returns it to zero.  An endpoint MUST NOT wrap the Sequence counter to zero
until the previous zero-value header block has been confirmed received.</t>

</section>
<section anchor="frame-priority" title="PRIORITY">

<t>The PRIORITY (type=0x02) frame specifies the sender-advised priority of a stream
and is substantially different from <xref target="RFC7540"/>. In order to support ordering,
it MUST be sent only on the connection control stream. The format has been
modified to accommodate not being sent on-stream and the larger stream ID space
of QUIC.</t>

<t>The semantics of the Stream Dependency, Weight, and E flag are the same as in
HTTP/2.</t>

<t>The flags defined are:</t>

<t><list style="hanging">
  <t hangText='E (0x01):'>
  Indicates that the stream dependency is exclusive (see <xref target="RFC7540"/> Section
5.3).</t>
</list></t>

<figure title="PRIORITY frame payload" anchor="fig-priority"><artwork type="drawing"><![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
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                   Prioritized Stream (32)                     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                    Dependent Stream (32)                      |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |   Weight (8)  |
   +-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The HEADERS frame payload has the following fields:</t>

<t><list style="hanging">
  <t hangText='Prioritized Stream:'>
  A 32-bit stream identifier for the message control stream whose priority is
being updated.</t>
  <t hangText='Stream Dependency:'>
  A 32-bit stream identifier for the stream that this stream depends on (see
<xref target="priority"/> and {!RFC7540}} Section 5.3).</t>
  <t hangText='Weight:'>
  An unsigned 8-bit integer representing a priority weight for the stream (see
<xref target="RFC7540"/> Section 5.3). Add one to the value to obtain a weight between 1
and 256.</t>
</list></t>

<t>A PRIORITY frame MUST have a payload length of nine octets.  A PRIORITY frame
of any other length MUST be treated as a connection error of type
HTTP_MALFORMED_PRIORITY.</t>

</section>
<section anchor="frame-settings" title="SETTINGS">

<t>The SETTINGS frame (type=0x4) conveys configuration parameters that affect how
endpoints communicate, such as preferences and constraints on peer behavior, and
is substantially different from <xref target="RFC7540"/>. Individually, a SETTINGS parameter
can also be referred to as a “setting”.</t>

<t>SETTINGS parameters are not negotiated; they describe characteristics of the
sending peer, which can be used by the receiving peer. However, a negotiation
can be implied by the use of SETTINGS – a peer uses SETTINGS to advertise a set
of supported values. The recipient can then choose which entries from this list
are also acceptable and proceed with the value it has chosen. (This choice could
be announced in a field of an extension frame, or in its own value in SETTINGS.)</t>

<t>Different values for the same parameter can be advertised by each peer. For
example, a client might permit a very large HPACK state table while a server
chooses to use a small one to conserve memory.</t>

<t>Parameters MUST NOT occur more than once.  A receiver MAY treat the presence of
the same parameter more than once as a connection error of type
HTTP_MALFORMED_SETTINGS.</t>

<t>The SETTINGS frame defines no flags.</t>

<t>The payload of a SETTINGS frame consists of zero or more parameters, each
consisting of an unsigned 16-bit setting identifier and a length-prefixed binary
value.</t>

<figure title="SETTINGS value format" anchor="fig-ext-settings"><artwork type="drawing"><![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
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |        Identifier (16)        |         Length (16)           |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          Contents (?)                       ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>A zero-length content indicates that the setting value is a Boolean and true.
False is indicated by the absence of the setting.</t>

<t>Non-zero-length values MUST be compared against the remaining length of the
SETTINGS frame.  Any value which purports to cross the end of the frame MUST
cause the SETTINGS frame to be considered malformed and trigger a connection
error of type HTTP_MALFORMED_SETTINGS.</t>

<t>An implementation MUST ignore the contents for any SETTINGS identifier it does
not understand.</t>

<t>SETTINGS frames always apply to a connection, never a single stream.  A SETTINGS
frame MUST be sent as the first frame of the connection control stream (see
<xref target="stream-mapping"/>) by each peer, and MUST NOT be sent subsequently or on any
other stream. If an endpoint receives an SETTINGS frame on a different stream,
the endpoint MUST respond with a connection error of type
HTTP_SETTINGS_ON_WRONG_STREAM.  If an endpoint receives a second SETTINGS frame,
the endpoint MUST respond with a connection error of type
HTTP_MULTIPLE_SETTINGS.</t>

<t>The SETTINGS frame affects connection state. A badly formed or incomplete
SETTINGS frame MUST be treated as a connection error (Section 5.4.1) of type
HTTP_MALFORMED_SETTINGS.</t>

<section anchor="integer-encoding" title="Integer encoding">

<t>Settings which are integers are transmitted in network byte order.  Leading
zero octets are permitted, but implementations SHOULD use only as many bytes as
are needed to represent the value.  An integer MUST NOT be represented in more
bytes than would be used to transfer the maximum permitted value.</t>

</section>
<section anchor="settings-parameters" title="Defined SETTINGS Parameters">

<t>The following settings are defined in HTTP/QUIC:</t>

<t><list style="hanging">
  <t hangText='SETTINGS_HEADER_TABLE_SIZE (0x1):'>
  An integer with a maximum value of 2^32 - 1.</t>
  <t hangText='SETTINGS_DISABLE_PUSH (0x2):'>
  Transmitted as a Boolean; replaces SETTINGS_ENABLE_PUSH</t>
  <t hangText='SETTINGS_MAX_HEADER_LIST_SIZE (0x6):'>
  An integer with a maximum value of 2^32 - 1.</t>
</list></t>

</section>
<section anchor="usage-in-0-rtt" title="Usage in 0-RTT">

<t>When a 0-RTT QUIC connection is being used, the client’s initial requests will
be sent before the arrival of the server’s SETTINGS frame.  Clients SHOULD
cache at least the following settings about servers:</t>

<t><list style="symbols">
  <t>SETTINGS_HEADER_TABLE_SIZE</t>
  <t>SETTINGS_MAX_HEADER_LIST_SIZE</t>
</list></t>

<t>Clients MUST comply with cached settings until the server’s current settings are
received.  If a client does not have cached values, it SHOULD assume the
following values:</t>

<t><list style="symbols">
  <t>SETTINGS_HEADER_TABLE_SIZE:  0 octets</t>
  <t>SETTINGS_MAX_HEADER_LIST_SIZE:  16,384 octets</t>
</list></t>

<t>Servers MAY continue processing data from clients which exceed its current
configuration during the initial flight.  In this case, the client MUST apply
the new settings immediately upon receipt.</t>

<t>If the connection is closed because these or other constraints were violated
during the 0-RTT flight (e.g. with HTTP_HPACK_DECOMPRESSION_FAILED), clients MAY
establish a new connection and retry any 0-RTT requests using the settings sent
by the server on the closed connection. (This assumes that only requests that
are safe to retry are sent in 0-RTT.) If the connection was closed before the
SETTINGS frame was received, clients SHOULD discard any cached values and use
the defaults above on the next connection.</t>

</section>
</section>
<section anchor="frame-push-promise" title="PUSH_PROMISE">

<t>The PUSH_PROMISE frame (type=0x05) is used to carry a request header set from
server to client, as in HTTP/2.  It defines no flags.</t>

<figure title="PUSH_PROMISE frame payload" anchor="fig-push-promise"><artwork type="drawing"><![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
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                   Promised Stream ID (32)                     |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |       Sequence? (16)          |         Header Block (*)    ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The payload consists of:</t>

<t><list style="hanging">
  <t hangText='Promised Stream ID:'>
  A 32-bit Stream ID indicating the QUIC stream on which the response headers
will be sent.  (The response body stream is implied by the headers stream,
as defined in <xref target="stream-mapping"/>.)</t>
  <t hangText='HPACK Sequence:'>
  A sixteen-bit counter, equivalent to the Sequence field in HEADERS</t>
  <t hangText='Payload:'>
  HPACK-compressed request headers for the promised response.</t>
</list></t>

</section>
</section>
</section>
<section anchor="errors" title="Error Handling">

<t>QUIC allows the application to abruptly terminate individual streams or the
entire connection when an error is encountered.  These are referred to as
“stream errors” or “connection errors” and are described in more detail in
<xref target="QUIC-TRANSPORT"></xref>.</t>

<t>HTTP/QUIC requires that only data streams be terminated abruptly.  Terminating a
message control stream will result in an error of type HTTP_RST_CONTROL_STREAM.</t>

<t>This section describes HTTP-specific error codes which can be used to express
the cause of a connection or stream error.</t>

<section anchor="http-error-codes" title="HTTP-Defined QUIC Error Codes">

<t>QUIC allocates error codes 0x0000-0x3FFF to application protocol definition.
The following error codes are defined by HTTP for use in QUIC RST_STREAM,
GOAWAY, and CONNECTION_CLOSE frames.</t>

<t><list style="hanging">
  <t hangText='HTTP_PUSH_REFUSED (0x01):'>
  The server has attempted to push content which the client will not accept
on this connection.</t>
  <t hangText='HTTP_INTERNAL_ERROR (0x02):'>
  An internal error has occurred in the HTTP stack.</t>
  <t hangText='HTTP_PUSH_ALREADY_IN_CACHE (0x03):'>
  The server has attempted to push content which the client has cached.</t>
  <t hangText='HTTP_REQUEST_CANCELLED (0x04):'>
  The client no longer needs the requested data.</t>
  <t hangText='HTTP_HPACK_DECOMPRESSION_FAILED (0x05):'>
  HPACK failed to decompress a frame and cannot continue.</t>
  <t hangText='HTTP_CONNECT_ERROR (0x06):'>
  The connection established in response to a CONNECT request was reset or
abnormally closed.</t>
  <t hangText='HTTP_EXCESSIVE_LOAD (0x07):'>
  The endpoint detected that its peer is exhibiting a behavior that might be
generating excessive load.</t>
  <t hangText='HTTP_VERSION_FALLBACK (0x08):'>
  The requested operation cannot be served over HTTP/QUIC.  The peer should
retry over HTTP/2.</t>
  <t hangText='HTTP_MALFORMED_HEADERS (0x09):'>
  A HEADERS frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_PRIORITY (0x0A):'>
  A PRIORITY frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_SETTINGS (0x0B):'>
  A SETTINGS frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_PUSH_PROMISE (0x0C):'>
  A PUSH_PROMISE frame has been received with an invalid format.</t>
  <t hangText='HTTP_INTERRUPTED_HEADERS (0x0E):'>
  A HEADERS frame without the End Header Block flag was followed by a frame
other than HEADERS.</t>
  <t hangText='HTTP_SETTINGS_ON_WRONG_STREAM (0x0F):'>
  A SETTINGS frame was received on a request control stream.</t>
  <t hangText='HTTP_MULTIPLE_SETTINGS (0x10):'>
  More than one SETTINGS frame was received.</t>
  <t hangText='HTTP_RST_CONTROL_STREAM (0x11):'>
  A message control stream closed abruptly.</t>
</list></t>

</section>
</section>
<section anchor="considerations-for-transitioning-from-http2" title="Considerations for Transitioning from HTTP/2">

<t>HTTP/QUIC is strongly informed by HTTP/2, and bears many similarities.  This
section points out important differences from HTTP/2 and describes how to map
HTTP/2 extensions into HTTP/QUIC.</t>

<section anchor="h2-frames" title="HTTP Frame Types">

<t>Many framing concepts from HTTP/2 can be elided away on QUIC, because the
transport deals with them. Because frames are already on a stream, they can omit
the stream number. Because frames do not block multiplexing (QUIC’s multiplexing
occurs below this layer), the support for variable-maximum-length packets can be
removed. Because stream termination is handled by QUIC, an END_STREAM flag is
not required.</t>

<t>Frame payloads are largely drawn from <xref target="RFC7540"/>. However, QUIC includes many
features (e.g. flow control) which are also present in HTTP/2. In these cases,
the HTTP mapping does not re-implement them. As a result, several HTTP/2 frame
types are not required in HTTP/QUIC. Where an HTTP/2-defined frame is no longer
used, the frame ID has been reserved in order to maximize portability between
HTTP/2 and HTTP/QUIC implementations. However, even equivalent frames between
the two mappings are not identical.</t>

<t>Many of the differences arise from the fact that HTTP/2 provides an absolute
ordering between frames across all streams, while QUIC provides this guarantee
on each stream only.  As a result, if a frame type makes assumptions that frames
from different streams will still be received in the order sent, HTTP/QUIC will
break them.</t>

<t>For example, implicit in the HTTP/2 prioritization scheme is the notion of
in-order delivery of priority changes (i.e., dependency tree mutations): since
operations on the dependency tree such as reparenting a subtree are not
commutative, both sender and receiver must apply them in the same order to
ensure that both sides have a consistent view of the stream dependency tree.
HTTP/2 specifies priority assignments in PRIORITY frames and (optionally) in
HEADERS frames. To achieve in-order delivery of priority changes in HTTP/QUIC,
PRIORITY frames are sent on the connection control stream and the PRIORITY
section is removed from the HEADERS frame.</t>

<t>Other than this issue, frame type HTTP/2 extensions are typically portable to
QUIC simply by replacing Stream 0 in HTTP/2 with Stream 1 in HTTP/QUIC.</t>

<t>Below is a listing of how each HTTP/2 frame type is mapped:</t>

<t><list style="hanging">
  <t hangText='DATA (0x0):'>
  Instead of DATA frames, HTTP/QUIC uses a separate data stream.  See
<xref target="stream-mapping"/>.</t>
  <t hangText='HEADERS (0x1):'>
  As described above, the PRIORITY region of HEADERS is not supported. A
separate PRIORITY frame MUST be used. Padding is not defined in HTTP/QUIC
frames.  See <xref target="frame-headers"/>.</t>
  <t hangText='PRIORITY (0x2):'>
  As described above, the PRIORITY frame is sent on the connection control
stream.  See <xref target="frame-priority"/>.</t>
  <t hangText='RST_STREAM (0x3):'>
  RST_STREAM frames do not exist, since QUIC provides stream lifecycle
management.</t>
  <t hangText='SETTINGS (0x4):'>
  SETTINGS frames are sent only at the beginning of the connection.  See
<xref target="frame-settings"/> and <xref target="h2-settings"/>.</t>
  <t hangText='PUSH_PROMISE (0x5):'>
  See <xref target="frame-push-promise"/>.</t>
  <t hangText='PING (0x6):'>
  PING frames do not exist, since QUIC provides equivalent functionality.</t>
  <t hangText='GOAWAY (0x7):'>
  GOAWAY frames do not exist, since QUIC provides equivalent functionality.</t>
  <t hangText='WINDOW_UPDATE (0x8):'>
  WINDOW_UPDATE frames do not exist, since QUIC provides flow control.</t>
  <t hangText='CONTINUATION (0x9):'>
  CONTINUATION frames do not exist; instead, larger HEADERS/PUSH_PROMISE
frames than HTTP/2 are permitted, and HEADERS frames can be used in series.</t>
</list></t>

<t>The IANA registry of frame types has been updated in <xref target="iana-frames"/> to include
references to the definition for each frame type in HTTP/2 and in HTTP/QUIC.
Frames not defined as available in HTTP/QUIC SHOULD NOT be sent and SHOULD be
ignored as unknown on receipt.</t>

</section>
<section anchor="h2-settings" title="HTTP/2 SETTINGS Parameters">

<t>An important difference from HTTP/2 is that settings are sent once, at the
beginning of the connection, and thereafter cannot change.  This eliminates
many corner cases around synchronization of changes.</t>

<t>Some transport-level options that HTTP/2 specifies via the SETTINGS frame are
superseded by QUIC transport parameters in HTTP/QUIC. The HTTP-level options
that are retained in HTTP/QUIC have the same value as in HTTP/2.</t>

<t>Below is a listing of how each HTTP/2 SETTINGS parameter is mapped:</t>

<t><list style="hanging">
  <t hangText='SETTINGS_HEADER_TABLE_SIZE:'>
  See <xref target="settings-parameters"/>.</t>
  <t hangText='SETTINGS_ENABLE_PUSH:'>
  See SETTINGS_DISABLE_PUSH in <xref target="settings-parameters"/>.</t>
  <t hangText='SETTINGS_MAX_CONCURRENT_STREAMS:'>
  QUIC requires the maximum number of incoming streams per connection to be
specified in the initial transport handshake.  Specifying
SETTINGS_MAX_CONCURRENT_STREAMS in the SETTINGS frame is an error.</t>
  <t hangText='SETTINGS_INITIAL_WINDOW_SIZE:'>
  QUIC requires both stream and connection flow control window sizes to be
specified in the initial transport handshake.  Specifying
SETTINGS_INITIAL_WINDOW_SIZE in the SETTINGS frame is an error.</t>
  <t hangText='SETTINGS_MAX_FRAME_SIZE:'>
  This setting has no equivalent in HTTP/QUIC.  Specifying it in the SETTINGS
frame is an error.</t>
  <t hangText='SETTINGS_MAX_HEADER_LIST_SIZE:'>
  See <xref target="settings-parameters"/>.</t>
</list></t>

<t>Settings defined by extensions to HTTP/2 MAY be expressed as integers with a
maximum value of 2^32-1, if they are applicable to HTTP/QUIC, but SHOULD have a
specification describing their usage.  Fields for this purpose have been added
to the IANA registry in <xref target="iana-settings"/>.</t>

</section>
<section anchor="http2-error-codes" title="HTTP/2 Error Codes">

<t>QUIC has the same concepts of “stream” and “connection” errors that HTTP/2
provides. However, because the error code space is shared between multiple
components, there is no direct portability of HTTP/2 error codes.</t>

<t>The HTTP/2 error codes defined in Section 7 of <xref target="RFC7540"/> map to QUIC error
codes as follows:</t>

<t><list style="hanging">
  <t hangText='NO_ERROR (0x0):'>
  QUIC_NO_ERROR</t>
  <t hangText='PROTOCOL_ERROR (0x1):'>
  No single mapping.  See new HTTP_MALFORMED_* error codes defined in
<xref target="http-error-codes"/>.</t>
  <t hangText='INTERNAL_ERROR (0x2)'>
  HTTP_INTERNAL_ERROR in <xref target="http-error-codes"/>.</t>
  <t hangText='FLOW_CONTROL_ERROR (0x3):'>
  Not applicable, since QUIC handles flow control.  Would provoke a
QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA from the QUIC layer.</t>
  <t hangText='SETTINGS_TIMEOUT (0x4):'>
  Not applicable, since no acknowledgement of SETTINGS is defined.</t>
  <t hangText='STREAM_CLOSED (0x5):'>
  Not applicable, since QUIC handles stream management.  Would provoke a
QUIC_STREAM_DATA_AFTER_TERMINATION from the QUIC layer.</t>
  <t hangText='FRAME_SIZE_ERROR (0x6)'>
  No single mapping.  See new error codes defined in <xref target="http-error-codes"/>.</t>
  <t hangText='REFUSED_STREAM (0x7):'>
  Not applicable, since QUIC handles stream management.  Would provoke a
QUIC_TOO_MANY_OPEN_STREAMS from the QUIC layer.</t>
  <t hangText='CANCEL (0x8):'>
  HTTP_REQUEST_CANCELLED in <xref target="http-error-codes"/>.</t>
  <t hangText='COMPRESSION_ERROR (0x9):'>
  HTTP_HPACK_DECOMPRESSION_FAILED in <xref target="http-error-codes"/>.</t>
  <t hangText='CONNECT_ERROR (0xa):'>
  HTTP_CONNECT_ERROR in <xref target="http-error-codes"/>.</t>
  <t hangText='ENHANCE_YOUR_CALM (0xb):'>
  HTTP_EXCESSIVE_LOAD in <xref target="http-error-codes"/>.</t>
  <t hangText='INADEQUATE_SECURITY (0xc):'>
  Not applicable, since QUIC is assumed to provide sufficient security on all
connections.</t>
  <t hangText='HTTP_1_1_REQUIRED (0xd):'>
  HTTP_VERSION_FALLBACK in <xref target="http-error-codes"/>.</t>
</list></t>

<t>Error codes defined by HTTP/2 extensions need to be re-registered for HTTP/QUIC
if still applicable.  See <xref target="iana-error-codes"/>.</t>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>The security considerations of HTTP over QUIC should be comparable to those of
HTTP/2.</t>

<t>The modified SETTINGS format contains nested length elements, which could pose
a security risk to an uncautious implementer.  A SETTINGS frame parser MUST
ensure that the length of the frame exactly matches the length of the settings
it contains.</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<section anchor="registration-of-httpquic-identification-string" title="Registration of HTTP/QUIC Identification String">

<t>This document creates a new registration for the identification of HTTP/QUIC in
the “Application Layer Protocol Negotiation (ALPN) Protocol IDs” registry
established in <xref target="RFC7301"/>.</t>

<t>The “hq” string identifies HTTP/QUIC:</t>

<t><list style="hanging">
  <t hangText='Protocol:'>
  HTTP over QUIC</t>
  <t hangText='Identification Sequence:'>
  0x68 0x71 (“hq”)</t>
  <t hangText='Specification:'>
  This document</t>
</list></t>

</section>
<section anchor="registration-of-quic-version-hint-alt-svc-parameter" title="Registration of QUIC Version Hint Alt-Svc Parameter">

<t>This document creates a new registration for version-negotiation hints in the
“Hypertext Transfer Protocol (HTTP) Alt-Svc Parameter” registry established in
<xref target="RFC7838"/>.</t>

<t><list style="hanging">
  <t hangText='Parameter:'>
  “quic”</t>
  <t hangText='Specification:'>
  This document, <xref target="alt-svc-version-hint"/></t>
</list></t>

</section>
<section anchor="iana-frames" title="Existing Frame Types">

<t>This document adds two new columns to the “HTTP/2 Frame Type” registry defined
in <xref target="RFC7540"/>:</t>

<t><list style="hanging">
  <t hangText='Supported Protocols:'>
  Indicates which associated protocols use the frame type.  Values MUST be one
of:

      <list style="symbols">
        <t>“HTTP/2 only”</t>
        <t>“HTTP/QUIC only”</t>
        <t>“Both”</t>
      </list>
  </t>
  <t hangText='HTTP/QUIC Specification:'>
  Indicates where this frame’s behavior over QUIC is defined; required
if the frame is supported over QUIC.</t>
</list></t>

<t>Values for existing registrations are assigned by this document:</t>

<texttable>
      <ttcol align='left'>Frame Type</ttcol>
      <ttcol align='center'>Supported Protocols</ttcol>
      <ttcol align='left'>HTTP/QUIC Specification</ttcol>
      <c>DATA</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
      <c>HEADERS</c>
      <c>Both</c>
      <c><xref target="frame-headers"/></c>
      <c>PRIORITY</c>
      <c>Both</c>
      <c><xref target="frame-priority"/></c>
      <c>RST_STREAM</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
      <c>SETTINGS</c>
      <c>Both</c>
      <c><xref target="frame-settings"/></c>
      <c>PUSH_PROMISE</c>
      <c>Both</c>
      <c><xref target="frame-push-promise"/></c>
      <c>PING</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
      <c>GOAWAY</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
      <c>WINDOW_UPDATE</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
      <c>CONTINUATION</c>
      <c>HTTP/2 only</c>
      <c>N/A</c>
</texttable>

<t>The “Specification” column is renamed to “HTTP/2 specification” and is only
required if the frame is supported over HTTP/2.</t>

</section>
<section anchor="iana-settings" title="Settings Parameters">

<t>This document adds two new columns to the “HTTP/2 Settings” registry defined
in <xref target="RFC7540"/>:</t>

<t><list style="hanging">
  <t hangText='Supported Protocols:'>
  Indicates which associated protocols use the setting.  Values MUST be one
of:

      <list style="symbols">
        <t>“HTTP/2 only”</t>
        <t>“HTTP/QUIC only”</t>
        <t>“Both”</t>
      </list>
  </t>
  <t hangText='HTTP/QUIC Specification:'>
  Indicates where this setting’s behavior over QUIC is defined; required
if the frame is supported over QUIC.</t>
</list></t>

<t>Values for existing registrations are assigned by this document:</t>

<texttable>
      <ttcol align='left'>Setting Name</ttcol>
      <ttcol align='center'>Supported Protocols</ttcol>
      <ttcol align='left'>HTTP/QUIC Specification</ttcol>
      <c>HEADER_TABLE_SIZE</c>
      <c>Both</c>
      <c><xref target="settings-parameters"/></c>
      <c>ENABLE_PUSH / DISABLE_PUSH</c>
      <c>Both</c>
      <c><xref target="settings-parameters"/></c>
      <c>MAX_CONCURRENT_STREAMS</c>
      <c>HTTP/2 Only</c>
      <c>N/A</c>
      <c>INITIAL_WINDOW_SIZE</c>
      <c>HTTP/2 Only</c>
      <c>N/A</c>
      <c>MAX_FRAME_SIZE</c>
      <c>HTTP/2 Only</c>
      <c>N/A</c>
      <c>MAX_HEADER_LIST_SIZE</c>
      <c>Both</c>
      <c><xref target="settings-parameters"/></c>
</texttable>

<t>The “Specification” column is renamed to “HTTP/2 Specification” and is only
required if the setting is supported over HTTP/2.</t>

</section>
<section anchor="iana-error-codes" title="Error Codes">

<t>This document establishes a registry for HTTP/QUIC error codes.  The
“HTTP/QUIC Error Code” registry manages a 30-bit space.  The “HTTP/QUIC
Error Code” registry operates under the “Expert Review” policy
<xref target="RFC5226"/>.</t>

<t>Registrations for error codes are required to include a description
of the error code.  An expert reviewer is advised to examine new
registrations for possible duplication with existing error codes.
Use of existing registrations is to be encouraged, but not mandated.</t>

<t>New registrations are advised to provide the following information:</t>

<t><list style="hanging">
  <t hangText='Name:'>
  A name for the error code.  Specifying an error code name is optional.</t>
  <t hangText='Code:'>
  The 30-bit error code value.</t>
  <t hangText='Description:'>
  A brief description of the error code semantics, longer if no detailed
specification is provided.</t>
  <t hangText='Specification:'>
  An optional reference for a specification that defines the error code.</t>
</list></t>

<t>The entries in the following table are registered by this document.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Code</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>HTTP_PUSH_REFUSED</c>
      <c>0x01</c>
      <c>Client refused pushed content</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_INTERNAL_ERROR</c>
      <c>0x02</c>
      <c>Internal error</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_ALREADY_IN_CACHE</c>
      <c>0x03</c>
      <c>Pushed content already cached</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_REQUEST_CANCELLED</c>
      <c>0x04</c>
      <c>Data no longer needed</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_HPACK_DECOMPRESSION_FAILED</c>
      <c>0x05</c>
      <c>HPACK cannot continue</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_CONNECT_ERROR</c>
      <c>0x06</c>
      <c>TCP reset or error on CONNECT request</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_EXCESSIVE_LOAD</c>
      <c>0x07</c>
      <c>Peer generating excessive load</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_VERSION_FALLBACK</c>
      <c>0x08</c>
      <c>Retry over HTTP/2</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_HEADERS</c>
      <c>0x09</c>
      <c>Invalid HEADERS frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_PRIORITY</c>
      <c>0x0A</c>
      <c>Invalid PRIORITY frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_SETTINGS</c>
      <c>0x0B</c>
      <c>Invalid SETTINGS frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_PUSH_PROMISE</c>
      <c>0x0C</c>
      <c>Invalid PUSH_PROMISE frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_INTERRUPTED_HEADERS</c>
      <c>0x0E</c>
      <c>Incomplete HEADERS block</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_SETTINGS_ON_WRONG_STREAM</c>
      <c>0x0F</c>
      <c>SETTINGS frame on a request control stream</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MULTIPLE_SETTINGS</c>
      <c>0x10</c>
      <c>Multiple SETTINGS frames</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_RST_CONTROL_STREAM</c>
      <c>0x11</c>
      <c>Message control stream was RST</c>
      <c><xref target="http-error-codes"/></c>
</texttable>

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>

<reference anchor="QUIC-TRANSPORT" >
  <front>
    <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
    <author initials="J." surname="Iyengar" fullname="Jana Iyengar" role="editor">
      <organization>Google</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date />
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-latest"/>
</reference>




<reference  anchor="RFC7540" target='http://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2).  HTTP/2 enables a more efficient use of network resources and a reduced perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>



<reference  anchor="RFC2119" target='http://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC7838" target='http://www.rfc-editor.org/info/rfc7838'>
<front>
<title>HTTP Alternative Services</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke'><organization /></author>
<date year='2016' month='April' />
<abstract><t>This document specifies &quot;Alternative Services&quot; for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t></abstract>
</front>
<seriesInfo name='RFC' value='7838'/>
<seriesInfo name='DOI' value='10.17487/RFC7838'/>
</reference>



<reference  anchor="RFC7230" target='http://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC7231" target='http://www.rfc-editor.org/info/rfc7231'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract>
</front>
<seriesInfo name='RFC' value='7231'/>
<seriesInfo name='DOI' value='10.17487/RFC7231'/>
</reference>



<reference  anchor="RFC7541" target='http://www.rfc-editor.org/info/rfc7541'>
<front>
<title>HPACK: Header Compression for HTTP/2</title>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='H.' surname='Ruellan' fullname='H. Ruellan'><organization /></author>
<date year='2015' month='May' />
<abstract><t>This specification defines HPACK, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.</t></abstract>
</front>
<seriesInfo name='RFC' value='7541'/>
<seriesInfo name='DOI' value='10.17487/RFC7541'/>
</reference>



<reference  anchor="RFC0793" target='http://www.rfc-editor.org/info/rfc793'>
<front>
<title>Transmission Control Protocol</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<date year='1981' month='September' />
</front>
<seriesInfo name='STD' value='7'/>
<seriesInfo name='RFC' value='793'/>
<seriesInfo name='DOI' value='10.17487/RFC0793'/>
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC7301" target='http://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference  anchor="RFC5226" target='http://www.rfc-editor.org/info/rfc5226'>
<front>
<title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
<author initials='T.' surname='Narten' fullname='T. Narten'><organization /></author>
<author initials='H.' surname='Alvestrand' fullname='H. Alvestrand'><organization /></author>
<date year='2008' month='May' />
<abstract><t>Many protocols make use of identifiers consisting of constants and other well-known values.  Even after a protocol has been defined and deployment has begun, new values may need to be assigned (e.g., for a new option type in DHCP, or a new encryption or authentication transform for IPsec).  To ensure that such quantities have consistent values and interpretations across all implementations, their assignment must be administered by a central authority.  For IETF protocols, that role is provided by the Internet Assigned Numbers Authority (IANA).</t><t>In order for IANA to manage a given namespace prudently, it needs guidelines describing the conditions under which new values can be assigned or when modifications to existing values can be made.  If IANA is expected to play a role in the management of a namespace, IANA must be given clear and concise instructions describing that role.  This document discusses issues that should be considered in formulating a policy for assigning values to a namespace and provides guidelines for authors on the specific text that must be included in documents that place demands on IANA.</t><t>This document obsoletes RFC 2434.  This document specifies an Internet Best  Current Practices for the Internet Community, and requests discussion and  suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='26'/>
<seriesInfo name='RFC' value='5226'/>
<seriesInfo name='DOI' value='10.17487/RFC5226'/>
</reference>




    </references>


<section anchor="contributors" title="Contributors">

<t>The original authors of this specification were Robbie Shade and Mike Warres.</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>

<section anchor="since-draft-ietf-quic-http-02" title="Since draft-ietf-quic-http-02">

<t><list style="symbols">
  <t>Track changes in transport draft</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-http-01" title="Since draft-ietf-quic-http-01">

<t><list style="symbols">
  <t>SETTINGS changes (#181):
  <list style="symbols">
      <t>SETTINGS can be sent only once at the start of a connection;
no changes thereafter</t>
      <t>SETTINGS_ACK removed</t>
      <t>Settings can only occur in the SETTINGS frame a single time</t>
      <t>Boolean format updated</t>
    </list></t>
  <t>Alt-Svc parameter changed from “v” to “quic”; format updated (#229)</t>
  <t>Closing the connection control stream or any message control stream is a
fatal error (#176)</t>
  <t>HPACK Sequence counter can wrap (#173)</t>
  <t>0-RTT guidance added</t>
  <t>Guide to differences from HTTP/2 and porting HTTP/2 extensions added
(#127,#242)</t>
</list></t>

</section>
<section anchor="since-draft-ietf-quic-http-00" title="Since draft-ietf-quic-http-00">

<t><list style="symbols">
  <t>Changed “HTTP/2-over-QUIC” to “HTTP/QUIC” throughout (#11,#29)</t>
  <t>Changed from using HTTP/2 framing within Stream 3 to new framing format and
two-stream-per-request model (#71,#72,#73)</t>
  <t>Adopted SETTINGS format from draft-bishop-httpbis-extended-settings-01</t>
  <t>Reworked SETTINGS_ACK to account for indeterminate inter-stream order (#75)</t>
  <t>Described CONNECT pseudo-method (#95)</t>
  <t>Updated ALPN token and Alt-Svc guidance (#13,#87)</t>
  <t>Application-layer-defined error codes (#19,#74)</t>
</list></t>

</section>
<section anchor="since-draft-shade-quic-http2-mapping-00" title="Since draft-shade-quic-http2-mapping-00">

<t><list style="symbols">
  <t>Adopted as base for draft-ietf-quic-http</t>
  <t>Updated authors/editors list</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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

-->

</rfc>

