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

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

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

<rfc ipr="trust200902" docName="draft-ietf-quic-http-12" 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>Akamai</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>

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

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

<t>Field definitions are given in Augmented Backus-Naur Form (ABNF), as defined in
<xref target="RFC5234"/>.</t>

<t>This document uses the variable-length integer encoding from
<xref target="QUIC-TRANSPORT"/>.</t>

<t>Protocol elements called “frames” exist in both this document and
<xref target="QUIC-TRANSPORT"/>. Where frames from <xref target="QUIC-TRANSPORT"/> are referenced, the
frame name will be prefaced with “QUIC.”  For example, “QUIC APPLICATION_CLOSE
frames.”  References without this preface refer to frames defined in <xref target="frames"/>.</t>

</section>
</section>
<section anchor="connection-setup-and-management" title="Connection Setup and Management">

<section anchor="discovering-an-httpquic-endpoint" title="Discovering an HTTP/QUIC Endpoint">

<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 record 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, since an alternative always
includes an explicit 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.  Leading zeros
SHOULD be omitted for brevity.</t>

<t>Syntax:</t>

<figure><artwork type="abnf"><![CDATA[
quic = DQUOTE version-number [ "," version-number ] * DQUOTE
version-number = 1*8HEXDIG; hex-encoded QUIC version
]]></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).
Reserved versions MAY be listed, but unreserved versions which are not supported
by the alternative SHOULD NOT be present in the list. Origins MAY omit supported
versions for any reason.</t>

<t>Clients MUST ignore any included versions which they do not support.  The “quic”
parameter MUST NOT occur more than once; clients SHOULD process only the first
occurrence.</t>

<t>For example, suppose a server supported both version 0x00000001 and the version
rendered in ASCII as “Q034”.  If it opted to include the reserved versions (from
Section 4 of <xref target="QUIC-TRANSPORT"/>) 0x0 and 0x1abadaba, it could specify the
following header:</t>

<figure><artwork type="example"><![CDATA[
Alt-Svc: hq=":49288";quic="1,1abadaba,51303334,0"
]]></artwork></figure>

<t>A client acting on this header would drop the reserved versions (because it does
not support them), then attempt to connect to the alternative using the first
version in the list which it does support.</t>

</section>
</section>
<section anchor="connection-establishment" title="Connection Establishment">

<t>HTTP/QUIC relies on QUIC as the underlying transport.  The QUIC version being
used MUST use TLS version 1.3 or greater as its handshake protocol.  The Server
Name Indication (SNI) extension <xref target="RFC6066"/> MUST be included in the TLS
handshake.</t>

<t>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 TLS handshake.  Support for other application-layer protocols
MAY be offered in the same 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 by each endpoint as the initial frame
of their respective HTTP control stream (Stream ID 2 or 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="connection-reuse" title="Connection Reuse">

<t>Once a connection exists to a server endpoint, this connection MAY be reused for
requests with multiple different URI authority components.  The client MAY send
any requests for which the client considers the server authoritative.</t>

<t>An authoritative HTTP/QUIC endpoint is typically discovered because the client
has received an Alt-Svc record from the request’s origin which nominates the
endpoint as a valid HTTP Alternative Service for that origin.  As required by
<xref target="RFC7838"/>, clients MUST check that the nominated server can present a valid
certificate for the origin before considering it authoritative. Clients MUST NOT
assume that an HTTP/QUIC endpoint is authoritative for other origins without an
explicit signal.</t>

<t>A server that does not wish clients to reuse connections for a particular origin
can indicate that it is not authoritative for a request by sending a 421
(Misdirected Request) status code in response to the request (see Section 9.1.2
of <xref target="RFC7540"/>).</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 the first client-initiated, bidirectional stream (Stream 0) for
cryptographic operations. HTTP over QUIC reserves the first unidirectional
stream sent by either peer (Streams 2 and 3) for sending and receiving HTTP
control frames.  This pair of unidirectional streams is analogous to HTTP/2’s
Stream 0.  HTTP over QUIC also reserves the second and third unidirectional
streams for each peer’s QPACK encoder and decoder.  The client’s QPACK encoder
uses stream 6 and decoder uses stream 10.  The server’s encoder and decoder use
streams 7 and 11, respectively.  The data sent on these streams is critical to
the HTTP connection. If any 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.</t>

<t>An HTTP request/response consumes a single client-initiated, bidirectional
stream.  A bidirectional stream ensures that the response can be readily
correlated with the request. This means that the client’s first request occurs
on QUIC stream 4, with subsequent requests on stream 8, 12, and so on.</t>

<t>Server push uses server-initiated, unidirectional streams.  Thus, the server’s
first push consumes stream 7 and subsequent pushes use stream 11, 15, and so on.</t>

<t>These streams carry frames related to the request/response (see <xref target="frames"/>).
When a stream terminates cleanly, if the last frame on the stream was truncated,
this MUST be treated as a connection error (see HTTP_MALFORMED_FRAME in
<xref target="http-error-codes"/>).  Streams which terminate abruptly may be reset at any
point in the frame.</t>

<t>Streams SHOULD be used sequentially, with no gaps.</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 stream is closed
in the appropriate direction.</t>

<section anchor="control-streams" title="Control Streams">

<t>Since most connection-level concerns will be managed by QUIC, the primary use of
Streams 2 and 3 will be for the SETTINGS frame when the connection opens and for
PRIORITY frames subsequently.</t>

<t>A pair of unidirectional streams is used rather than a single bidirectional
stream.  This allows either peer to send data as soon they are able.  Depending
on whether 0-RTT is enabled on the connection, either client or server might be
able to send stream data first after the cryptographic handshake completes.</t>

</section>
<section anchor="request-response" title="HTTP Message Exchanges">

<t>A client sends an HTTP request on a client-initiated, bidirectional QUIC
stream. A server sends an HTTP response on the same stream 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"/>) containing the message headers (see
<xref target="RFC7230"/>, Section 3.2),</t>
  <t>the payload body (see <xref target="RFC7230"/>, Section 3.3), sent as a series of DATA
frames (see <xref target="frame-data"/>),</t>
  <t>optionally, one header block 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 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>PUSH_PROMISE frames MAY be interleaved with the frames of a response message
indicating a pushed resource related to the response. These PUSH_PROMISE frames
are not part of the response, but carry the headers of a separate HTTP request
message.  See <xref target="server-push"/> for more details.</t>

<t>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 following the
body. 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 discard any subsequent header blocks.</t>

<t>An HTTP request/response exchange fully consumes a QUIC stream. After sending a
request, a client closes the stream for sending; after sending a response, the
server closes the stream for sending and the QUIC stream is 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 triggering a QUIC
STOP_SENDING with error code HTTP_EARLY_RESPONSE, sending a complete response,
and cleanly closing its streams. Clients MUST NOT discard complete responses as
a result of having their request terminated abruptly, though clients can always
discard responses at their discretion for other reasons.  Servers MUST NOT
abort a response in progress as a result of receiving a solicited RST_STREAM.</t>

<section anchor="header-compression" title="Header Compression">

<t>HTTP/QUIC uses QPACK header compression as described in <xref target="QPACK"></xref>, a variation of
HPACK which allows the flexibility to avoid header-compression-induced
head-of-line blocking.  See that document for additional details.</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 request
stream MUST NOT be half-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.</t>

<t>All DATA frames on the request stream correspond to data sent on the TCP
connection. Any DATA frame sent by the client is transmitted by the proxy to the
TCP server; data received from the TCP server is packaged into DATA frames by
the proxy. Note that the size and number of TCP segments is not guaranteed to
map predictably to the size and number of HTTP DATA or QUIC STREAM frames.</t>

<t>The TCP connection can be closed by either peer. When the client ends the
request stream (that is, the receive stream at the proxy enters the “Data Recvd”
state), 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 terminate the send
stream that it sends to client. TCP connections which remain half-closed in a
single direction are not invalid, but are often handled poorly by servers, so
clients SHOULD NOT cause send a STREAM frame with a FIN bit for 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 anchor="request-cancellation" title="Request Cancellation">

<t>Either client or server can cancel requests by closing the stream (QUIC
RST_STREAM or STOP_SENDING frames, as appropriate) with an error type of
HTTP_REQUEST_CANCELLED (<xref target="http-error-codes"/>).  When the client cancels a
request or response, it indicates that the response is no longer of interest.</t>

<t>When the server cancels either direction of the request stream using
HTTP_REQUEST_CANCELLED, it indicates that no application processing was
performed.  The client can treat requests cancelled by the server as though they
had never been sent at all, thereby allowing them to be retried later on a new
connection.  Servers MUST NOT use the HTTP_REQUEST_CANCELLED status for requests
which were partially or fully processed.</t>

<t><list style="hanging">
  <t hangText='Note:'>
  In this context, “processed” means that some data from the stream was
passed to some higher layer of software that might have taken some action as
a result.</t>
</list></t>

<t>If a stream is cancelled after receiving a complete response, the client MAY
ignore the cancellation and use the response.  However, if a stream is cancelled
after receiving a partial response, the response SHOULD NOT be used.
Automatically retrying such requests is not possible, unless this is otherwise
permitted (e.g., idempotent actions like GET, PUT, or DELETE).</t>

</section>
</section>
<section anchor="priority" title="Request Prioritization">

<t>HTTP/QUIC uses the priority scheme described in <xref target="RFC7540"/>, Section 5.3. In
this priority scheme, a given request can be designated as dependent upon
another request, which expresses the preference that the latter stream (the
“parent” request) be allocated resources before the former stream (the
“dependent” request). Taken together, the dependencies across all requests 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 requests.</t>

<t>The PRIORITY frame <xref target="frame-priority"/> identifies a request
either by identifying the stream that carries a request or by using a Push ID
(<xref target="frame-push-promise"/>).</t>

<t>Only a client can send PRIORITY frames.  A server MUST NOT send a PRIORITY
frame.</t>

</section>
<section anchor="server-push" title="Server Push">

<t>HTTP/QUIC supports server push in a similar manner to <xref target="RFC7540"/>, but uses
different mechanisms. During connection establishment, the client enables server
push by sending a MAX_PUSH_ID frame (see <xref target="frame-max-push-id"/>). A server cannot
use server push until it receives a MAX_PUSH_ID frame.</t>

<t>As with server push for HTTP/2, the server initiates a server push by sending a
PUSH_PROMISE frame (see <xref target="frame-push-promise"/>) that includes request headers
for the promised request.  Promised requests MUST conform to the requirements in
Section 8.2 of <xref target="RFC7540"/>.</t>

<t>The PUSH_PROMISE frame is sent on the client-initiated, bidirectional stream
that carried the request that generated the push.  This allows the server push
to be associated with a request.  Ordering of a PUSH_PROMISE in relation to
certain parts of the response is important (see Section 8.2.1 of <xref target="RFC7540"/>).</t>

<t>Unlike HTTP/2, the PUSH_PROMISE does not reference a stream; it contains a Push
ID. The Push ID uniquely identifies a server push. This allows a server to
fulfill promises in the order that best suits its needs.</t>

<t>When a server later fulfills a promise, the server push response is conveyed on
a push stream.  A push stream is a server-initiated, unidirectional stream.  A
push stream identifies the Push ID of the promise that it fulfills, encoded as a
variable-length integer.</t>

<t>A server SHOULD use Push IDs sequentially, starting at 0.  A client uses the
MAX_PUSH_ID frame (<xref target="frame-max-push-id"/>) to limit the number of pushes that a
server can promise.  A client MUST treat receipt of a push stream with a Push ID
that is greater than the maximum Push ID as a connection error of type
HTTP_PUSH_LIMIT_EXCEEDED.</t>

<t>If a promised server push is not needed by the client, the client SHOULD send a
CANCEL_PUSH frame; if the push stream is already open, a QUIC STOP_SENDING frame
with an appropriate error code can be used instead (e.g., HTTP_PUSH_REFUSED,
HTTP_PUSH_ALREADY_IN_CACHE; see <xref target="errors"/>).  This asks the server not to
transfer the data and indicates that it will be discarded upon receipt.</t>

<figure title="Push Stream Header" anchor="fig-push-stream-header"><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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Push ID (i)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>Push streams always begin with a header containing the Push ID.  Each Push ID
MUST only be used once in a push stream header.  If a push stream header
includes a Push ID that was used in another push stream header, the client MUST
treat this as a connection error of type HTTP_DUPLICATE_PUSH.  The same Push ID
can be used in multiple PUSH_PROMISE frames (see <xref target="frame-push-promise"/>).</t>

<t>After the header, a push stream contains a response (<xref target="request-response"/>),
with response headers, a response body (if any) carried by DATA frames, then
trailers (if any) carried by HEADERS frames.</t>

</section>
</section>
<section anchor="http-framing-layer" title="HTTP Framing Layer">

<t>Frames are used on each stream.  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 (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|    Type (8)   |   Flags (8)   |       Frame Payload (*)     ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>A frame includes the following fields:</t>

<t><list style="hanging">
  <t hangText='Length:'>
  A variable-length integer that describes the length of the Frame Payload.
This length does not include the frame header.</t>
  <t hangText='Type:'>
  An 8-bit type for the frame.</t>
  <t hangText='Flags:'>
  An 8-bit field containing flags.  The Type field determines the semantics of
flags.</t>
  <t hangText='Frame Payload:'>
  A payload, the semantics of which are determined by the Type field.</t>
</list></t>

</section>
<section anchor="frames" title="Frame Definitions">

<section anchor="frame-data" title="DATA">

<t>DATA frames (type=0x0) convey arbitrary, variable-length sequences of octets
associated with an HTTP request or response payload.</t>

<t>The DATA frame defines no flags.</t>

<t>DATA frames MUST be associated with an HTTP request or response.  If a DATA
frame is received on either control stream, the recipient MUST respond with a
connection error (<xref target="errors"/>) of type HTTP_WRONG_STREAM.</t>

<figure title="DATA frame payload" anchor="fig-data"><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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Payload (*)                         ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>DATA frames MUST contain a non-zero-length payload.  If a DATA frame is received
with a payload length of zero, the recipient MUST respond with a stream error
(<xref target="errors"/>) of type HTTP_MALFORMED_FRAME.</t>

</section>
<section anchor="frame-headers" title="HEADERS">

<t>The HEADERS frame (type=0x1) is used to carry a header block, compressed using
QPACK. See <xref target="QPACK"></xref> for more details.</t>

<t>The HEADERS frame defines no flags.</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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Header Block (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>HEADERS frames can only be sent on request / push streams.</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 in format from <xref target="RFC7540"/>.  In order to ensure
that prioritization is processed in a consistent order, PRIORITY frames MUST be
sent on the control stream.  A PRIORITY frame sent on any other stream MUST be
treated as a HTTP_WRONG_STREAM error.</t>

<t>The format has been modified to accommodate not being sent on a request stream,
to allow for identification of server pushes, and the larger stream ID space of
QUIC.  The semantics of the Stream Dependency, Weight, and E flag are otherwise
the same as in HTTP/2.</t>

<t>The flags defined are:</t>

<t><list style="hanging">
  <t hangText='PUSH_PRIORITIZED (0x04):'>
  Indicates that the Prioritized Stream is a server push rather than a
request.</t>
  <t hangText='PUSH_DEPENDENT (0x02):'>
  Indicates a dependency on a server push.</t>
  <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 Request ID (i)                    |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                  Stream Dependency ID (i)                     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|   Weight (8)  |
+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The PRIORITY frame payload has the following fields:</t>

<t><list style="hanging">
  <t hangText='Prioritized Request ID:'>
  A variable-length integer that identifies a request.  This contains
the Stream ID of a request stream when the PUSH_PRIORITIZED flag is clear,
or a Push ID when the PUSH_PRIORITIZED flag is set.</t>
  <t hangText='Stream Dependency ID:'>
  A variable-length integer that identifies a dependent request.  This
contains the Stream ID of a request stream when the PUSH_DEPENDENT flag is
clear, or a Push ID when the PUSH_DEPENDENT flag is set.  A request Stream
ID of 0 indicates a dependency on the root stream. For details of
dependencies, see <xref target="priority"/> and <xref target="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 identifies a request to prioritize, and a request upon which
that request is dependent.  A Prioritized Request ID or Stream Dependency ID
identifies a client-initiated request using the corresponding stream ID when the
corresponding PUSH_PRIORITIZED or PUSH_DEPENDENT flag is not set.  Setting the
PUSH_PRIORITIZED or PUSH_DEPENDENT flag causes the Prioritized Request ID or
Stream Dependency ID (respectively) to identify a server push using a Push ID
(see <xref target="frame-push-promise"/> for details).</t>

<t>A PRIORITY frame MAY identify a Stream Dependency ID using a Stream ID of 0; as
in <xref target="RFC7540"/>, this makes the request dependent on the root of the dependency
tree.</t>

<t>A PRIORITY frame MUST identify a client-initiated, bidirectional stream.  A
server MUST treat receipt of PRIORITY frame with a Stream ID of any other type
as a connection error of type HTTP_MALFORMED_FRAME.</t>

<t>Stream ID 0 cannot be reprioritized. A Prioritized Request ID that identifies
Stream 0 MUST be treated as a connection error of type HTTP_MALFORMED_FRAME.</t>

<t>A PRIORITY frame that does not reference a request MUST be treated as a
HTTP_MALFORMED_FRAME error, unless it references Stream ID 0.  A PRIORITY
that sets a PUSH_PRIORITIZED or PUSH_DEPENDENT flag, but then references a
non-existent Push ID MUST be treated as a HTTP_MALFORMED_FRAME error.</t>

<t>A PRIORITY frame MUST contain only the identified fields.  A PRIORITY frame that
contains more or fewer fields, or a PRIORITY frame that includes a truncated
integer encoding MUST be treated as a connection error of type
HTTP_MALFORMED_FRAME.</t>

</section>
<section anchor="frame-cancel-push" title="CANCEL_PUSH">

<t>The CANCEL_PUSH frame (type=0x3) is used to request cancellation of server push
prior to the push stream being created.  The CANCEL_PUSH frame identifies a
server push request by Push ID (see <xref target="frame-push-promise"/>) using a
variable-length integer.</t>

<t>When a server receives this frame, it aborts sending the response for the
identified server push.  If the server has not yet started to send the server
push, it can use the receipt of a CANCEL_PUSH frame to avoid opening a
stream.  If the push stream has been opened by the server, the server SHOULD
sent a QUIC RST_STREAM frame on those streams and cease transmission of the
response.</t>

<t>A server can send this frame to indicate that it won’t be sending a response
prior to creation of a push stream.  Once the push stream has been created,
sending CANCEL_PUSH has no effect on the state of the push stream.  A QUIC
RST_STREAM frame SHOULD be used instead to cancel transmission of the server
push response.</t>

<t>A CANCEL_PUSH frame is sent on the control stream.  Sending a CANCEL_PUSH frame
on a stream other than the control stream MUST be treated as a stream error of
type HTTP_WRONG_STREAM.</t>

<t>The CANCEL_PUSH frame has no defined flags.</t>

<figure title="CANCEL_PUSH frame payload" anchor="fig-cancel-push"><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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Push ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The CANCEL_PUSH frame carries a Push ID encoded as a variable-length integer.
The Push ID identifies the server push that is being cancelled (see
<xref target="frame-push-promise"/>).</t>

<t>If the client receives a CANCEL_PUSH frame, that frame might identify a Push ID
that has not yet been mentioned by a PUSH_PROMISE frame.</t>

<t>An endpoint MUST treat a CANCEL_PUSH frame which does not contain exactly one
properly-formatted variable-length integer as a connection error of type
HTTP_MALFORMED_FRAME.</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 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 be willing to consume very large response headers,
while servers are more cautious about request size.</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_FRAME.</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 (i)       ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          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_FRAME.</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 either 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_WRONG_STREAM.  If
an endpoint receives a second SETTINGS frame, the endpoint MUST respond with a
connection error of type HTTP_MALFORMED_FRAME.</t>

<t>The SETTINGS frame affects connection state. A badly formed or incomplete
SETTINGS frame MUST be treated as a connection error (<xref target="errors"/>) of type
HTTP_MALFORMED_FRAME.</t>

<section anchor="integer-encoding" title="Integer encoding">

<t>Settings which are integers use the QUIC variable-length integer encoding.</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^30 - 1.  The default value is 4,096
bytes.</t>
  <t hangText='SETTINGS_MAX_HEADER_LIST_SIZE (0x6):'>
  An integer with a maximum value of 2^30 - 1.  The default value is
unlimited.</t>
  <t hangText='SETTINGS_QPACK_BLOCKED_STREAMS (0x7):'>
  An integer with a maximum value of 2^16 - 1.  The default value is 100.</t>
</list></t>

</section>
<section anchor="initial-settings-values" title="Initial SETTINGS Values">

<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 MUST store
the settings the server provided in the session being resumed and MUST comply
with stored settings until the server’s current settings are received.</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>When a 1-RTT QUIC connection is being used, the client MUST NOT send requests
prior to receiving and processing the server’s SETTINGS frame.</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.  The PUSH_PROMISE frame 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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Push ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Header Block (*)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The payload consists of:</t>

<t><list style="hanging">
  <t hangText='Push ID:'>
  A variable-length integer that identifies the server push request.  A push ID
is used in push stream header (<xref target="server-push"/>), CANCEL_PUSH frames
(<xref target="frame-cancel-push"/>), and PRIORITY frames (<xref target="frame-priority"/>).</t>
  <t hangText='Header Block:'>
  QPACK-compressed request headers for the promised response.  See <xref target="QPACK"></xref> for
more details.</t>
</list></t>

<t>A server MUST NOT use a Push ID that is larger than the client has provided in a
MAX_PUSH_ID frame (<xref target="frame-max-push-id"/>).  A client MUST treat receipt of a
PUSH_PROMISE that contains a larger Push ID than the client has advertised as a
connection error of type HTTP_MALFORMED_FRAME.</t>

<t>A server MAY use the same Push ID in multiple PUSH_PROMISE frames.  This allows
the server to use the same server push in response to multiple concurrent
requests.  Referencing the same server push ensures that a PUSH_PROMISE can be
made in relation to every response in which server push might be needed without
duplicating pushes.</t>

<t>A server that uses the same Push ID in multiple PUSH_PROMISE frames MUST include
the same header fields each time.  The octets of the header block MAY be
different due to differing encoding, but the header fields and their values MUST
be identical.  Note that ordering of header fields is significant.  A client
MUST treat receipt of a PUSH_PROMISE with conflicting header field values for
the same Push ID as a connection error of type HTTP_MALFORMED_FRAME.</t>

<t>Allowing duplicate references to the same Push ID is primarily to reduce
duplication caused by concurrent requests.  A server SHOULD avoid reusing a Push
ID over a long period.  Clients are likely to consume server push responses and
not retain them for reuse over time.  Clients that see a PUSH_PROMISE that uses
a Push ID that they have since consumed and discarded are forced to ignore the
PUSH_PROMISE.</t>

</section>
<section anchor="frame-goaway" title="GOAWAY">

<t>The GOAWAY frame (type=0x7) is used to initiate graceful shutdown of a
connection by a server.  GOAWAY allows a server to stop accepting new requests
while still finishing processing of previously received requests.  This enables
administrative actions, like server maintenance.  GOAWAY by itself does not
close a connection.</t>

<t>The GOAWAY frame does not define any flags.</t>

<figure title="GOAWAY frame payload" anchor="fig-goaway"><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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Stream ID (i)                      ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The GOAWAY frame carries a QUIC Stream ID for a client-initiated, bidirectional
stream encoded as a variable-length integer.  A client MUST treat receipt of a
GOAWAY frame containing a Stream ID of any other type as a connection error of
type HTTP_MALFORMED_FRAME.</t>

<t>Clients do not need to send GOAWAY to initiate a graceful shutdown; they simply
stop making new requests.  A server MUST treat receipt of a GOAWAY frame as a
connection error (<xref target="errors"/>) of type HTTP_UNEXPECTED_GOAWAY.</t>

<t>The GOAWAY frame applies to the connection, not a specific stream.  An endpoint
MUST treat a GOAWAY frame on a stream other than the control stream as a
connection error (<xref target="errors"/>) of type HTTP_WRONG_STREAM.</t>

<t>New client requests might already have been sent before the client receives the
server’s GOAWAY frame.  The GOAWAY frame contains the Stream ID of the last
client-initiated request that was or might be processed in this connection,
which enables client and server to agree on which requests were accepted prior
to the connection shutdown.  This identifier MAY be lower than the stream limit
identified by a QUIC MAX_STREAM_ID frame, and MAY be zero if no requests were
processed.  Servers SHOULD NOT increase the MAX_STREAM_ID limit after sending a
GOAWAY frame.</t>

<t>Once sent, the server MUST cancel requests sent on streams with an identifier
higher than the included last Stream ID.  Clients MUST NOT send new requests on
the connection after receiving GOAWAY, although requests might already be in
transit. A new connection can be established for new requests.</t>

<t>If the client has sent requests on streams with a higher Stream ID than
indicated in the GOAWAY frame, those requests are considered cancelled
(<xref target="request-cancellation"/>).  Clients SHOULD reset any streams above this ID with
the error code HTTP_REQUEST_CANCELLED.  Servers MAY also cancel requests on
streams below the indicated ID if these requests were not processed.</t>

<t>Requests on Stream IDs less than or equal to the Stream ID in the GOAWAY frame
might have been processed; their status cannot be known until they are completed
successfully, reset individually, or the connection terminates.</t>

<t>Servers SHOULD send a GOAWAY frame when the closing of a connection is known
in advance, even if the advance notice is small, so that the remote peer can
know whether a stream has been partially processed or not.  For example, if an
HTTP client sends a POST at the same time that a server closes a QUIC
connection, the client cannot know if the server started to process that POST
request if the server does not send a GOAWAY frame to indicate what streams it
might have acted on.</t>

<t>For unexpected closures caused by error conditions, a QUIC CONNECTION_CLOSE or
APPLICATION_CLOSE frame MUST be used.  However, a GOAWAY MAY be sent first to
provide additional detail to clients and to allow the client to retry requests.
Including the GOAWAY frame in the same packet as the QUIC CONNECTION_CLOSE or
APPLICATION_CLOSE frame improves the chances of the frame being received by
clients.</t>

<t>If a connection terminates without a GOAWAY frame, the last Stream ID is
effectively the highest possible Stream ID (as determined by QUIC’s
MAX_STREAM_ID).</t>

<t>An endpoint MAY send multiple GOAWAY frames if circumstances change. For
instance, an endpoint that sends GOAWAY without an error code during graceful
shutdown could subsequently encounter an error condition.  The last stream
identifier from the last GOAWAY frame received indicates which streams could
have been acted upon.  A server MUST NOT increase the value they send in the
last Stream ID, since clients might already have retried unprocessed requests on
another connection.</t>

<t>A client that is unable to retry requests loses all requests that are in flight
when the server closes the connection.  A server that is attempting to
gracefully shut down a connection SHOULD send an initial GOAWAY frame with the
last Stream ID set to the current value of QUIC’s MAX_STREAM_ID and SHOULD NOT
increase the MAX_STREAM_ID thereafter.  This signals to the client that a
shutdown is imminent and that initiating further requests is prohibited.  After
allowing time for any in-flight requests (at least one round-trip time), the
server MAY send another GOAWAY frame with an updated last Stream ID.  This
ensures that a connection can be cleanly shut down without losing requests.</t>

<t>Once all requests on streams at or below the identified stream number have been
completed or cancelled, and all promised server push responses associated with
those requests have been completed or cancelled, the connection can be closed
using an Immediate Close (see <xref target="QUIC-TRANSPORT"/>).  An endpoint that completes a
graceful shutdown SHOULD use the QUIC APPLICATION_CLOSE frame with the
HTTP_NO_ERROR code.</t>

</section>
<section anchor="frame-max-push-id" title="MAX_PUSH_ID">

<t>The MAX_PUSH_ID frame (type=0xD) is used by clients to control the number of
server pushes that the server can initiate.  This sets the maximum value for a
Push ID that the server can use in a PUSH_PROMISE frame.  Consequently, this
also limits the number of push streams that the server can initiate in addition
to the limit set by the QUIC MAX_STREAM_ID frame.</t>

<t>The MAX_PUSH_ID frame is always sent on a control stream.  Receipt of a
MAX_PUSH_ID frame on any other stream MUST be treated as a connection error of
type HTTP_WRONG_STREAM.</t>

<t>A server MUST NOT send a MAX_PUSH_ID frame.  A client MUST treat the receipt of
a MAX_PUSH_ID frame as a connection error of type HTTP_MALFORMED_FRAME.</t>

<t>The maximum Push ID is unset when a connection is created, meaning that a server
cannot push until it receives a MAX_PUSH_ID frame.  A client that wishes to
manage the number of promised server pushes can increase the maximum Push ID by
sending a MAX_PUSH_ID frame as the server fulfills or cancels server pushes.</t>

<t>The MAX_PUSH_ID frame has no defined flags.</t>

<figure title="MAX_PUSH_ID frame payload" anchor="fig-max-push"><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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                          Push ID (i)                        ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>The MAX_PUSH_ID frame carries a single variable-length integer that identifies
the maximum value for a Push ID that the server can use (see
<xref target="frame-push-promise"/>).  A MAX_PUSH_ID frame cannot reduce the maximum Push ID;
receipt of a MAX_PUSH_ID that contains a smaller value than previously received
MUST be treated as a connection error of type HTTP_MALFORMED_FRAME.</t>

<t>A server MUST treat a MAX_PUSH_ID frame payload that does not contain a single
variable-length integer as a connection error of type
HTTP_MALFORMED_FRAME.</t>

</section>
</section>
</section>
<section anchor="connection-management" title="Connection Management">

<t>QUIC connections are persistent.  All of the considerations in Section 9.1 of
<xref target="RFC7540"/> apply to the management of QUIC connections.</t>

<t>HTTP clients are expected to use QUIC PING frames to keep connections open.
Servers SHOULD NOT use PING frames to keep a connection open.  A client SHOULD
NOT use PING frames for this purpose unless there are responses outstanding for
requests or server pushes.  If the client is not expecting a response from the
server, allowing an idle connection to time out (based on the idle_timeout
transport parameter) is preferred over expending effort maintaining a connection
that might not be needed.  A gateway MAY use PING to maintain connections in
anticipation of need rather than incur the latency cost of connection
establishment to servers.</t>

</section>
<section anchor="errors" title="Error Handling">

<t>QUIC allows the application to abruptly terminate (reset) 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"/>.</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/QUIC Error Codes">

<t>The following error codes are defined for use in QUIC RST_STREAM, STOP_SENDING,
and CONNECTION_CLOSE frames when using HTTP/QUIC.</t>

<t><list style="hanging">
  <t hangText='STOPPING (0x00):'>
  This value is reserved by the transport to be used in response to QUIC
STOP_SENDING frames.</t>
  <t hangText='HTTP_NO_ERROR (0x01):'>
  No error.  This is used when the connection or stream needs to be closed, but
there is no error to signal.</t>
  <t hangText='HTTP_PUSH_REFUSED (0x02):'>
  The server has attempted to push content which the client will not accept
on this connection.</t>
  <t hangText='HTTP_INTERNAL_ERROR (0x03):'>
  An internal error has occurred in the HTTP stack.</t>
  <t hangText='HTTP_PUSH_ALREADY_IN_CACHE (0x04):'>
  The server has attempted to push content which the client has cached.</t>
  <t hangText='HTTP_REQUEST_CANCELLED (0x05):'>
  The client no longer needs the requested data.</t>
  <t hangText='HTTP_QPACK_DECOMPRESSION_FAILED (0x06):'>
  QPACK failed to decompress a frame and cannot continue.</t>
  <t hangText='HTTP_CONNECT_ERROR (0x07):'>
  The connection established in response to a CONNECT request was reset or
abnormally closed.</t>
  <t hangText='HTTP_EXCESSIVE_LOAD (0x08):'>
  The endpoint detected that its peer is exhibiting a behavior that might be
generating excessive load.</t>
  <t hangText='HTTP_VERSION_FALLBACK (0x09):'>
  The requested operation cannot be served over HTTP/QUIC.  The peer should
retry over HTTP/2.</t>
  <t hangText='HTTP_WRONG_STREAM (0x0A):'>
  A frame was received on stream where it is not permitted.</t>
  <t hangText='HTTP_PUSH_LIMIT_EXCEEDED (0x0B):'>
  A Push ID greater than the current maximum Push ID was referenced.</t>
  <t hangText='HTTP_DUPLICATE_PUSH (0x0C):'>
  A Push ID was referenced in two different stream headers.</t>
  <t hangText='HTTP_MALFORMED_FRAME (0x01XX):'>
  An error in a specific frame type.  The frame type is included as the last
octet of the error code.  For example, an error in a MAX_PUSH_ID frame would
be indicated with the code (0x10D).</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 describes the approach taken to design HTTP/QUIC, points out important
differences from HTTP/2, and describes how to map HTTP/2 extensions into
HTTP/QUIC.</t>

<t>HTTP/QUIC begins from the premise that HTTP/2 code reuse is a useful feature,
but not a hard requirement.  HTTP/QUIC departs from HTTP/2 primarily where
necessary to accommodate the differences in behavior between QUIC and TCP (lack
of ordering, support for streams).  We intend to avoid gratuitous changes which
make it difficult or impossible to build extensions with the same semantics
applicable to both protocols at once.</t>

<t>These departures are noted in this section.</t>

<section anchor="h2-streams" title="Streams">

<t>HTTP/QUIC permits use of a larger number of streams (2^62-1) than HTTP/2.  The
considerations about exhaustion of stream identifier space apply, though the
space is significantly larger such that it is likely that other limits in QUIC
are reached first, such as the limit on the connection flow control window.</t>

</section>
<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 control stream and the PRIORITY section is
removed from the HEADERS frame.</t>

<t>Likewise, HPACK was designed with the assumption of in-order delivery. 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.  As a result, HTTP/QUIC uses a modified
version of HPACK, described in <xref target="QPACK"></xref>.</t>

<t>Frame type definitions in HTTP/QUIC often use the QUIC variable-length integer
encoding.  In particular, Stream IDs use this encoding, which allow for a larger
range of possible values than the encoding used in HTTP/2.  Some frames in
HTTP/QUIC use an identifier rather than a Stream ID (e.g. Push IDs in PRIORITY
frames). Redefinition of the encoding of extension frame types might be
necessary if the encoding includes a Stream ID.</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 2 or 3 in HTTP/QUIC.
HTTP/QUIC extensions will not assume ordering, but would not be harmed by
ordering, and would be portable to HTTP/2 in the same manner.</t>

<t>Below is a listing of how each HTTP/2 frame type is mapped:</t>

<t><list style="hanging">
  <t hangText='DATA (0x0):'>
  Padding is not defined in HTTP/QUIC frames.  See <xref target="frame-data"/>.</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 control stream and can
reference either a Stream ID or a Push ID.  See <xref target="frame-priority"/>.</t>
  <t hangText='RST_STREAM (0x3):'>
  RST_STREAM frames do not exist, since QUIC provides stream lifecycle
management.  The same code point is used for the CANCEL_PUSH frame
(<xref target="frame-cancel-push"/>).</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):'>
  The PUSH_PROMISE does not reference a stream; instead the push stream
references the PUSH_PROMISE frame using a Push ID.  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 is sent only from server to client and does not contain an error code.
See <xref target="frame-goaway"/>.</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>Frame types defined by extensions to HTTP/2 need to be separately registered for
HTTP/QUIC if still applicable.  The IDs of frames defined in <xref target="RFC7540"/> have
been reserved for simplicity.  See <xref target="iana-frames"/>.</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:'>
  This is removed in favor of the MAX_PUSH_ID which provides a more granular
control over server push.</t>
  <t hangText='SETTINGS_MAX_CONCURRENT_STREAMS:'>
  QUIC controls the largest open Stream ID as part of its flow control logic.
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 need to be defined separately for HTTP/2 and HTTP/QUIC.  The IDs of
settings defined in <xref target="RFC7540"/> have been reserved for simplicity.  See
<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 the HTTP over
QUIC error codes as follows:</t>

<t><list style="hanging">
  <t hangText='NO_ERROR (0x0):'>
  HTTP_NO_ERROR in <xref target="http-error-codes"/>.</t>
  <t hangText='PROTOCOL_ERROR (0x1):'>
  No single mapping.  See new HTTP_MALFORMED_FRAME 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 need to be defined for HTTP/2 and HTTP/QUIC separately.  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 with TLS.</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="Frame Types">

<t>This document establishes a registry for HTTP/QUIC frame type codes. The
“HTTP/QUIC Frame Type” registry manages an 8-bit space.  The “HTTP/QUIC Frame
Type” registry operates under either of the “IETF Review” or “IESG Approval”
policies <xref target="RFC8126"/> for values between 0x00 and 0xef, with values between 0xf0
and 0xff being reserved for Experimental Use.</t>

<t>While this registry is separate from the “HTTP/2 Frame Type” registry defined in
<xref target="RFC7540"/>, it is preferable that the assignments parallel each other.  If an
entry is present in only one registry, every effort SHOULD be made to avoid
assigning the corresponding value to an unrelated operation.</t>

<t>New entries in this registry require the following information:</t>

<t><list style="hanging">
  <t hangText='Frame Type:'>
  A name or label for the frame type.</t>
  <t hangText='Code:'>
  The 8-bit code assigned to the frame type.</t>
  <t hangText='Specification:'>
  A reference to a specification that includes a description of the frame
layout, its semantics, and flags that the frame type uses, including any parts
of the frame that are conditionally present based on the value of flags.</t>
</list></t>

<t>The entries in the following table are registered by this document.</t>

<texttable>
      <ttcol align='left'>Frame Type</ttcol>
      <ttcol align='center'>Code</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>DATA</c>
      <c>0x0</c>
      <c><xref target="frame-data"/></c>
      <c>HEADERS</c>
      <c>0x1</c>
      <c><xref target="frame-headers"/></c>
      <c>PRIORITY</c>
      <c>0x2</c>
      <c><xref target="frame-priority"/></c>
      <c>CANCEL_PUSH</c>
      <c>0x3</c>
      <c><xref target="frame-cancel-push"/></c>
      <c>SETTINGS</c>
      <c>0x4</c>
      <c><xref target="frame-settings"/></c>
      <c>PUSH_PROMISE</c>
      <c>0x5</c>
      <c><xref target="frame-push-promise"/></c>
      <c>Reserved</c>
      <c>0x6</c>
      <c>N/A</c>
      <c>GOAWAY</c>
      <c>0x7</c>
      <c><xref target="frame-goaway"/></c>
      <c>Reserved</c>
      <c>0x8</c>
      <c>N/A</c>
      <c>Reserved</c>
      <c>0x9</c>
      <c>N/A</c>
      <c>MAX_PUSH_ID</c>
      <c>0xD</c>
      <c><xref target="frame-max-push-id"/></c>
</texttable>

</section>
<section anchor="iana-settings" title="Settings Parameters">

<t>This document establishes a registry for HTTP/QUIC settings.  The “HTTP/QUIC
Settings” registry manages a 16-bit space.  The “HTTP/QUIC Settings” registry
operates under the “Expert Review” policy <xref target="RFC8126"/> for values in the range
from 0x0000 to 0xefff, with values between and 0xf000 and 0xffff being reserved
for Experimental Use.  The designated experts are the same as those for the
“HTTP/2 Settings” registry defined in <xref target="RFC7540"/>.</t>

<t>While this registry is separate from the “HTTP/2 Settings” registry defined in
<xref target="RFC7540"/>, it is preferable that the assignments parallel each other.  If an
entry is present in only one registry, every effort SHOULD be made to avoid
assigning the corresponding value to an unrelated operation.</t>

<t>New registrations are advised to provide the following information:</t>

<t><list style="hanging">
  <t hangText='Name:'>
  A symbolic name for the setting.  Specifying a setting name is optional.</t>
  <t hangText='Code:'>
  The 16-bit code assigned to the setting.</t>
  <t hangText='Specification:'>
  An optional reference to a specification that describes the use of the
setting.</t>
</list></t>

<t>The entries in the following table are registered by this document.</t>

<texttable>
      <ttcol align='left'>Setting Name</ttcol>
      <ttcol align='center'>Code</ttcol>
      <ttcol align='left'>Specification</ttcol>
      <c>HEADER_TABLE_SIZE</c>
      <c>0x1</c>
      <c><xref target="settings-parameters"/></c>
      <c>Reserved</c>
      <c>0x2</c>
      <c>N/A</c>
      <c>Reserved</c>
      <c>0x3</c>
      <c>N/A</c>
      <c>Reserved</c>
      <c>0x4</c>
      <c>N/A</c>
      <c>Reserved</c>
      <c>0x5</c>
      <c>N/A</c>
      <c>MAX_HEADER_LIST_SIZE</c>
      <c>0x6</c>
      <c><xref target="settings-parameters"/></c>
      <c>QPACK_BLOCKED_STREAMS</c>
      <c>0x7</c>
      <c><xref target="settings-parameters"/></c>
</texttable>

</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 16-bit space.  The “HTTP/QUIC
Error Code” registry operates under the “Expert Review” policy
<xref target="RFC8126"/>.</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 16-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>STOPPING</c>
      <c>0x0000</c>
      <c>Reserved by QUIC</c>
      <c><xref target="QUIC-TRANSPORT"/></c>
      <c>HTTP_NO_ERROR</c>
      <c>0x0001</c>
      <c>No error</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_REFUSED</c>
      <c>0x0002</c>
      <c>Client refused pushed content</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_INTERNAL_ERROR</c>
      <c>0x0003</c>
      <c>Internal error</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_ALREADY_IN_CACHE</c>
      <c>0x0004</c>
      <c>Pushed content already cached</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_REQUEST_CANCELLED</c>
      <c>0x0005</c>
      <c>Data no longer needed</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_HPACK_DECOMPRESSION_FAILED</c>
      <c>0x0006</c>
      <c>HPACK cannot continue</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_CONNECT_ERROR</c>
      <c>0x0007</c>
      <c>TCP reset or error on CONNECT request</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_EXCESSIVE_LOAD</c>
      <c>0x0008</c>
      <c>Peer generating excessive load</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_VERSION_FALLBACK</c>
      <c>0x0009</c>
      <c>Retry over HTTP/2</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_WRONG_STREAM</c>
      <c>0x000A</c>
      <c>A frame was sent on the wrong stream</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_LIMIT_EXCEEDED</c>
      <c>0x000B</c>
      <c>Maximum Push ID exceeded</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_DUPLICATE_PUSH</c>
      <c>0x000C</c>
      <c>Push ID was fulfilled multiple times</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_FRAME</c>
      <c>0x01XX</c>
      <c>Error in frame formatting or use</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>Fastly</organization>
    </author>
    <author initials="M." surname="Thomson" fullname="Martin Thomson" role="editor">
      <organization>Mozilla</organization>
    </author>
    <date year="2018" month="May" day="22"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-11"/>
</reference>
<reference anchor="QPACK" >
  <front>
    <title>QPACK: Header Compression for HTTP over QUIC</title>
    <author initials="C." surname="Krasic" fullname="Charles 'Buck' Krasic">
      <organization>Google, Inc</organization>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
    </author>
    <author initials="A." surname="Frindell" fullname="Alan Frindell" role="editor">
      <organization>Facebook</organization>
    </author>
    <date year="2018" month="May" day="22"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-qpack-00"/>
</reference>




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



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



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



<reference  anchor="RFC5234" target='https://www.rfc-editor.org/info/rfc5234'>
<front>
<title>Augmented BNF for Syntax Specifications: ABNF</title>
<author initials='D.' surname='Crocker' fullname='D. Crocker' role='editor'><organization /></author>
<author initials='P.' surname='Overell' fullname='P. Overell'><organization /></author>
<date year='2008' month='January' />
<abstract><t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='68'/>
<seriesInfo name='RFC' value='5234'/>
<seriesInfo name='DOI' value='10.17487/RFC5234'/>
</reference>



<reference  anchor="RFC7838" target='https://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="RFC6066" target='https://www.rfc-editor.org/info/rfc6066'>
<front>
<title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<date year='2011' month='January' />
<abstract><t>This document provides specifications for existing TLS extensions.  It is a companion document for RFC 5246, &quot;The Transport Layer Security (TLS) Protocol Version 1.2&quot;.  The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6066'/>
<seriesInfo name='DOI' value='10.17487/RFC6066'/>
</reference>



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



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




    </references>


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

<t>The original authors of this specification were Robbie Shade and Mike Warres.</t>

<t>A substantial portion of Mike’s contribution was supported by Microsoft during
his employment there.</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-11" title="Since draft-ietf-quic-http-11">

<t><list style="symbols">
  <t>Moved QPACK table updates and acknowledgments to dedicated streams (#1121,
#1122, #1238)</t>
</list></t>

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

<t><list style="symbols">
  <t>Settings need to be remembered when attempting and accepting 0-RTT (#1157,
#1207)</t>
</list></t>

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

<t><list style="symbols">
  <t>Selected QCRAM for header compression (#228, #1117)</t>
  <t>The server_name TLS extension is now mandatory (#296, #495)</t>
  <t>Specified handling of unsupported versions in Alt-Svc (#1093, #1097)</t>
</list></t>

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

<t><list style="symbols">
  <t>Clarified connection coalescing rules (#940, #1024)</t>
</list></t>

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

<t><list style="symbols">
  <t>Changes for integer encodings in QUIC (#595,#905)</t>
  <t>Use unidirectional streams as appropriate (#515, #240, #281, #886)</t>
  <t>Improvement to the description of GOAWAY (#604, #898)</t>
  <t>Improve description of server push usage (#947, #950, #957)</t>
</list></t>

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

<t><list style="symbols">
  <t>Track changes in QUIC error code usage (#485)</t>
</list></t>

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

<t><list style="symbols">
  <t>Made push ID sequential, add MAX_PUSH_ID, remove SETTINGS_ENABLE_PUSH (#709)</t>
  <t>Guidance about keep-alive and QUIC PINGs (#729)</t>
  <t>Expanded text on GOAWAY and cancellation (#757)</t>
</list></t>

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

<t><list style="symbols">
  <t>Cite RFC 5234 (#404)</t>
  <t>Return to a single stream per request (#245,#557)</t>
  <t>Use separate frame type and settings registries from HTTP/2 (#81)</t>
  <t>SETTINGS_ENABLE_PUSH instead of SETTINGS_DISABLE_PUSH (#477)</t>
  <t>Restored GOAWAY (#696)</t>
  <t>Identify server push using Push ID rather than a stream ID (#702,#281)</t>
  <t>DATA frames cannot be empty (#700)</t>
</list></t>

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

<t>None.</t>

</section>
<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:
H4sIADCcBFsAA+19a3fbRpbg9/oVWPlDpCzJ6OF3tmdWkeRYM7LkkeRO98yZ
9QFJUMQxBbABULI68fz2vc+qWwAoyelkdnd6nRNbIoF63Lp134/hcOiavFlk
r5O3d8usarLPTXJZpUU9y6rkfVU25aRcJJtvLy/fbyXlDXz4Lx+OD1w6HlfZ
DbwEn5uPp+WkSK9hsGmVzpphnjWz4V9W+WQ4b5rlcGfXTdMGvt3d3nk53H42
3N11E/jgqqzuXid1M3X5snqdNNWqbna3t19t77q0ytLXvKBlWTXutqw+XVXl
avmaJ3R1kxbTj+miLGDcu6x2y/x18m+w6kFSwwtVNqvhp7tr/gHWd50ul3lx
9e/OpatmXlav3dAl8Ccv6tfJu1HyQ17PyyV9xFt5l3/K7KdldfU62f+UXqc5
/Z7BD4vXyfWYHvmf2U32l1U2K1ejcUbfVyVCN5vmTVk5V5TVddrkN9lrB9/i
HoaX5/unF+/Pzi9f0/NyHBv4HUyUfDh8P/whrbNp8m61aPLlIvsMP8Ouk4ts
sqqyAJ0Ner8DYvywzqo8q/NiVvIkSXJcNFlVZM3wEI+qe2KNjjrc2aFXFFz8
+lD+FcD90yg5vsuKq7TynzP0/ikt0s5XBMI3ad0s7vxnEZh654DDuZyX13VZ
tOZ4l1ZNXnS+pFnelX/NF4u0fxo8gff7B//cAjx9lLzN0ing9UF5vayyus7L
IpmVVQvjf1OQ/2WZTj4Nt7fvBbcA42CU/HOV1vnEfMHQOJin1SKrk29+WE0+
fdN9isDyY1leLbIBLGmybob4LkTwbt0IMy7fi+Qym8yLclFeAQTWjb8/St5U
eTHNFovODPuLtOj7VhBnko3L8pP5PD5Vh0AP18wNh8MkHdeA0ZPGuct5RkeX
eAxPlkrn5mkN5waHmy6SWZY2cL3qpJmnTQKEKJnCcVbpeJHBBpLUhfcVL4DS
rCbzBAcBypNeJ9d6Y4HiDBKgr0P5YrYob5NJWTSw8gFeZgcfDBeAR8XkDr8o
skmDKJcBgRsvANbXWdGMEkDyvEYytsLfcUWTKh/DItNECFtSzmgtrgbCVDT5
pA7Y2nk/XdRlkk/hx3wGR0Uvfrfb3bqrV+MaXpkm4zsaidZspp/DduRl4CBZ
gdelTiZwiuMsQRjBq03Ji+ADKcom+3iKfzXlx3O6a7Vzh3k9WfFlg300tFi8
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
LiPhu6bsNPe/Ad53RAltDgEA

-->

</rfc>

