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

<!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-02" category="std">

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

    <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 443 at the same hostname by including the
following header in any response:</t>

<figure><artwork><![CDATA[
Alt-Svc: hq=":443"
]]></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>

<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><![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><![CDATA[
Alt-Svc: hq=":443";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 (StreamID 3, 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 1 for crypto operations (the handshake, crypto config
updates). Stream 3 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 5 and 7, the second
on stream 9 and 11, 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-3-connection-control-stream" title="Stream 3: Connection Control Stream">

<t>Since most connection-level concerns will be managed by QUIC, the primary use of
Stream 3 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 StreamID 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 3) and message (streams 5, 9,
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><![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><![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><![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><![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><![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 3 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>
</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-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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
6zNr68ZK0236hduvII5QThTftmXKGGvvNfm3RfI1xuka5t2hXwZ+heYDcH54
3ubSTXfeXfrlzN+glqRIk4uvn7ceu6nu9zn9QteT+4Wctfm+Zt57gjwy7wv6
hSs9K4Wcv2FePxDUdL4v6Re8q1KLObWiO62VfD5+3krUqGHeV3y+WDS5smzz
6/dbC/LU5n1Nv5xXqzNXwPix89ZLOqvzvhE64kJEv67w95jXdyXZeXvevJUE
5N9hXt9xZOd9581bCen8Hvv1fE123n1/v/Uq0W+at6lQ1N9vX+bVrnzmiLny
7Rv3u7Iw1Mx7SL80tVVsrgZ9JJxrlaKV893eol+OJammlgL+jfttqCitzMty
8HhFd4qwoBt2Hz/vf5Pcx3/gt2AYjj6Z4le+DzPLTYA3y+PrGKUu394ufcfR
XPMUGWq9dZ4NhzGcwzQcczeA4/hTFHwM8SJGCSfv89WwRxkFJv8cPH0KRk7Q
H8cw558KuiN87+lTYMrYWC6SYhh1JklxbE6F99g+YZg4IcoQx5vQWiWwZNbq
6ZXoBaS4/zgPJ2UnjspJByNYHTqfre29tTXbg80WZj3Zfr29Cd/hcbrfc3q4
e1PLKArMTSTmcjibK/B2jXECRLsObpOTK8NfofyQiiD9Sj2YVAFLM1Ij7uZE
SNPOtYxnkYygTX0lnC7J6bhrDQw63clphVKN1LppkZ1P8b63lfcBQjs7bzZx
mP0kMw3PVldBSVPbFQXaaIFiNiUoQarxwRG8ekkT+P2CzKVCCBG6cgif3KUn
uRHb9SIeh3QumFyIn/+wILswu7eqGt0RdHVfvZqKxglwop1X7Sc7z3dgtgcQ
a4sQa18AKs6SDsr/DnoMWtaFIn9O82xxTcX+MM02zCLQdY9E7ha0dVX4J9re
cWrLtEp2XOvXcm6wQ9hBeZvJ3T+dOaxEGfYMGFQC876CeV/twL8Mzt44o+Yl
1ZQMLsSkbQ/jYprNac/wa4eABsAy7nWgMBzpPMLWq85QhOpyTdEi5fLqOMV+
HLZPEvzeMdiDDhRY4Ata2IEpdVKFcV5Ei3HWATSeZoicb/jBD4KtmJUA032K
uHWfYr7BFAD5bvvJ61e8bZvq0KHULFNK7Lpg4JU3AKnndVQokCNaXNjRSjRC
inUHrlgwgnwPN9+ERcTA7CaEJz+LiH/y/QjwyH8BgVWAADq6AAA=

-->

</rfc>

