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

<!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-07" 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 year="2017" month="October"/>

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

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

</section>
</section>
<section anchor="quic-advertisement" title="QUIC Advertisement">

<t>An HTTP origin advertises the availability of an equivalent HTTP/QUIC endpoint
via the Alt-Svc HTTP response header or the HTTP/2 ALTSVC frame (<xref target="RFC7838"/>),
using the ALPN token defined in <xref target="connection-establishment"/>.</t>

<t>For example, an origin could indicate in an HTTP/1.1 or HTTP/2 response that
HTTP/QUIC was available on UDP port 50781 at the same hostname by including the
following header in any response:</t>

<figure><artwork type="example"><![CDATA[
Alt-Svc: hq=":50781"
]]></artwork></figure>

<t>On receipt of an Alt-Svc header indicating HTTP/QUIC support, a client MAY
attempt to establish a QUIC connection to the indicated host and port and, if
successful, send HTTP requests using the mapping described in this document.</t>

<t>Connectivity problems (e.g. firewall blocking UDP) can result in QUIC connection
establishment failure, in which case the client SHOULD continue using the
existing connection or try another alternative endpoint offered by the origin.</t>

<t>Servers MAY serve HTTP/QUIC on any UDP port.  Servers MUST use the same port
across all IP addresses that serve a single domain, and SHOULD NOT change this
port.</t>

<section anchor="alt-svc-version-hint" title="QUIC Version Hints">

<t>This document defines the “quic” parameter for Alt-Svc, which MAY be used to
provide version-negotiation hints to HTTP/QUIC clients. QUIC versions are
four-octet sequences with no additional constraints on format. Syntax:</t>

<figure><artwork type="abnf"><![CDATA[
quic = version-number
version-number = 1*8HEXDIG; hex-encoded QUIC version
]]></artwork></figure>

<t>Leading zeros SHOULD be omitted for brevity.  When multiple versions are
supported, the “quic” parameter MAY be repeated multiple times in a single
Alt-Svc entry.  For example, if a server supported both version 0x00000001 and
the version rendered in ASCII as “Q034”, it could specify the following header:</t>

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

<t>Where multiple versions are listed, the order of the values reflects the
server’s preference (with the first value being the most preferred version).
Origins SHOULD list only versions which are supported by the alternative, but
MAY omit supported versions for any reason.</t>

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

<t>HTTP/QUIC connections are established as described in <xref target="QUIC-TRANSPORT"/>. During
connection establishment, HTTP/QUIC support is indicated by selecting the ALPN
token “hq” in the crypto handshake.</t>

<t>While connection-level options pertaining to the core QUIC protocol are set in
the initial crypto handshake, HTTP-specific settings are conveyed
in the SETTINGS frame. After the QUIC connection is established, a SETTINGS
frame (<xref target="frame-settings"/>) MUST be sent as the initial frame of the HTTP control
stream (Stream ID 1, see <xref target="stream-mapping"/>).  The server MUST NOT send data on
any other stream until the client’s SETTINGS frame has been received.</t>

<section anchor="draft-version-identification" title="Draft Version Identification">

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

<t>Only implementations of the final, published RFC can identify themselves as
“hq”. Until such an RFC exists, implementations MUST NOT identify themselves
using this string.</t>

<t>Implementations of draft versions of the protocol MUST add the string “-“ and
the corresponding draft number to the identifier. For example,
draft-ietf-quic-http-01 is identified using the string “hq-01”.</t>

<t>Non-compatible experiments that are based on these draft versions MUST append
the string “-“ and an experiment name to the identifier. For example, an
experimental implementation based on draft-ietf-quic-http-09 which reserves an
extra stream for unsolicited transmission of 1980s pop music might identify
itself as “hq-09-rickroll”. Note that any label MUST conform to the “token”
syntax defined in Section 3.2.6 of <xref target="RFC7230"></xref>. Experimenters are encouraged to
coordinate their experiments on the quic@ietf.org mailing list.</t>

</section>
</section>
<section anchor="stream-mapping" title="Stream Mapping and Usage">

<t>A QUIC stream provides reliable in-order delivery of bytes, but makes no
guarantees about order of delivery with regard to bytes on other streams. On the
wire, data is framed into QUIC STREAM frames, but this framing is invisible to
the HTTP framing layer. A QUIC receiver buffers and orders received STREAM
frames, exposing the data contained within as a reliable byte stream to the
application.</t>

<t>QUIC reserves Stream 0 for crypto operations (the handshake, crypto config
updates). Stream 1 is reserved for sending and receiving HTTP control frames,
and is analogous to HTTP/2’s Stream 0.  This control stream is considered
critical to the HTTP connection.  If the 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 single stream: This
means that the client’s first request occurs on QUIC stream 3, the second on
stream 5, and so on. The server’s first push consumes stream 2.</t>

<t>This stream carries 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_* 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.  Streams used for pushed
resources MAY be initiated out-of-order, but stream IDs SHOULD be allocated to
promised resources sequentially.</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="stream-1-control-stream" title="Stream 1: Control Stream">

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

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

<t>A client sends an HTTP request on a new 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 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. QUIC anticipates
moving to a modified version of HPACK without this assumption.  In the meantime,
by fixing the size of the dynamic table at zero, HPACK can be used in an
unordered environment.</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.</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 half-closes the
request 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 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="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>HTTP/2 defines its priorities in terms of streams whereas HTTP over QUIC
identifies requests.  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"/>).  Other than the means of identifying requests, the
prioritization system is identical to that in HTTP/2.</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 as described in <xref target="RFC7540"/>. 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 that includes request header fields attributed to the
request. The PUSH_PROMISE frame is sent on a response stream.  Unlike HTTP/2,
the PUSH_PROMISE does not reference a stream; when a server fulfills a promise,
the stream that carries the stream headers references the PUSH_PROMISE.  This
allows a server to fulfill promises in the order that best suits its needs.</t>

<t>The server push response is conveyed on a push stream.  A push stream is a
server-initiated stream.  A push stream includes a header (see
<xref target="fig-push-stream-header"/>) that identifies the PUSH_PROMISE that it fulfills.
This header consists of a 32-bit Push ID, which identifies a server push (see
<xref target="frame-push-promise"/>).</t>

<figure title="Push Stream Header" anchor="fig-push-stream-header"><artwork><![CDATA[
 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                         Push ID (32)                          |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>A push stream always starts with a 32-bit Push ID.  A client MUST treat
receiving a push stream that contains fewer than 4 octets as a connection error
of type HTTP_MALFORMED_PUSH.</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_MALFORMED_PUSH.</t>

<t>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_MALFORMED_PUSH.  The
same Push ID can be used in multiple PUSH_PROMISE frames (see
<xref target="frame-push-promise"/>).</t>

<t>After the push stream header, a push 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>

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

</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 (16)         |     Type (8)  |   Flags (8)   |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       Frame Payload (*)                     ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

</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 the control stream, the recipient MUST respond with a
connection error (<xref target="errors"/>) of type HTTP_WRONG_STREAM.</t>

<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_DATA.</t>

</section>
<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="header-compression"/>.</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>

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

</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 (32)                   |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                  Stream Dependency ID (32)                    |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |   Weight (8)  |
   +-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Prioritized Request ID:'>
  A 32-bit identifier for 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 32-bit stream identifier for 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 priotize, 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>Stream ID 0 and stream ID 1 cannot be reprioritized. A Prioritized Request ID
that identifies Stream 0 or 1 MUST be treated as a connection error of type
HTTP_MALFORMED_PRIORITY.</t>

<t>A PRIORITY frame that does not reference a request MUST be treated as a
HTTP_MALFORMED_PRIORITY 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_PRIORITY error.</t>

<t>The length of a PRIORITY frame is 9 octets.  A PRIORITY frame with any other
length MUST be treated as a connection error of type HTTP_MALFORMED_PRIORITY.</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"/>).</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>

<t>The CANCEL_PUSH frame carries a 32-bit Push ID that 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>A server MUST treat a CANCEL_PUSH frame payload that is other than 4 octets in
length as a connection error of type HTTP_MALFORMED_CANCEL_PUSH.</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_SETTINGS.</t>

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

<t>The payload of a SETTINGS frame consists of zero or more parameters, each
consisting of an unsigned 16-bit setting identifier and a length-prefixed binary
value.</t>

<figure title="SETTINGS value format" anchor="fig-ext-settings"><artwork type="drawing"><![CDATA[
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |        Identifier (16)        |         Length (16)           |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                          Contents (?)                       ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

<t>A zero-length content indicates that the setting value is a Boolean and true.
False is indicated by the absence of the setting.</t>

<t>Non-zero-length values MUST be compared against the remaining length of the
SETTINGS frame.  Any value which purports to cross the end of the frame MUST
cause the SETTINGS frame to be considered malformed and trigger a connection
error of type HTTP_MALFORMED_SETTINGS.</t>

<t>An implementation MUST ignore the contents for any SETTINGS identifier it does
not understand.</t>

<t>SETTINGS frames always apply to a connection, never a single stream.  A SETTINGS
frame MUST be sent as the first frame of the 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_MULTIPLE_SETTINGS.</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_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.  This value MUST be zero.</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.  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 (32)                         |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                       Header Block (*)                      ...
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
]]></artwork></figure>

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

<t><list style="hanging">
  <t hangText='Push ID:'>
  A 32-bit identifier for 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:'>
  HPACK-compressed request headers for the promised response.</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_PUSH_PROMISE.</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_PUSH_PROMISE.</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.  (Note that clients do not need to send GOAWAY to gracefully
close a connection; they simply stop making new requests.)</t>

<t>The GOAWAY frame does not define any flags, and the payload is a QUIC stream
identifier.  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 identifier 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><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>Once sent, the server will refuse requests sent on streams with an identifier
higher than the included last stream identifier.  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 identifier than
indicated in the GOAWAY frame, those requests were not and will not be
processed.  Endpoints SHOULD reset any streams above this ID with the error code
HTTP_REQUEST_CANCELLED.  Servers MAY also reset streams below the indicated ID
with HTTP_REQUEST_CANCELLED if the associated requests were not processed.
Servers MUST NOT use the HTTP_REQUEST_CANCELLED status for requests which were
partially or fully processed.</t>

<t>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.
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).  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
frame MUST be used.  However, a GOAWAY MAY be sent first to provide additional
detail to clients.  If a connection terminates without a GOAWAY frame, the last
stream identifier is effectively the highest possible stream identifier (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.  Endpoints MUST NOT increase the value they send in the
last stream identifier, since the peers 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 identifier 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 identifier.
This ensures that a connection can be cleanly shut down without losing requests.</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 the 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_MAX_PUSH_ID.</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>

<t>The MAX_PUSH_ID frame carries a 32-bit Push ID 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_MAX_PUSH_ID.</t>

<t>A server MUST treat a MAX_PUSH_ID frame payload that is other than 4 octets in
length as a connection error of type HTTP_MALFORMED_MAX_PUSH_ID.</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_HPACK_DECOMPRESSION_FAILED (0x06):'>
  HPACK 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_MALFORMED_HEADERS (0x0A):'>
  A HEADERS frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_PRIORITY (0x0B):'>
  A PRIORITY frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_SETTINGS (0x0C):'>
  A SETTINGS frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_PUSH_PROMISE (0x0D):'>
  A PUSH_PROMISE frame has been received with an invalid format.</t>
  <t hangText='HTTP_MALFORMED_DATA (0x0E):'>
  A DATA frame has been received with an invalid format.</t>
  <t hangText='HTTP_INTERRUPTED_HEADERS (0x0F):'>
  A HEADERS frame without the End Header Block flag was followed by a frame
other than HEADERS.</t>
  <t hangText='HTTP_WRONG_STREAM (0x10):'>
  A frame was received on stream where it is not permitted.</t>
  <t hangText='HTTP_MULTIPLE_SETTINGS (0x11):'>
  More than one SETTINGS frame was received.</t>
  <t hangText='HTTP_MALFORMED_PUSH (0x12):'>
  A push stream header was malformed or included an invalid Push ID.</t>
  <t hangText='HTTP_MALFORMED_MAX_PUSH_ID (0x13):'>
  A MAX_PUSH_ID frame has been received with an invalid format.</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-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>Other than this issue, frame type HTTP/2 extensions are typically portable to
QUIC simply by replacing Stream 0 in HTTP/2 with Stream 1 in HTTP/QUIC.
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.  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_* 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.</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>
</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>0x00</c>
      <c>Reserved by QUIC</c>
      <c><xref target="QUIC-TRANSPORT"/></c>
      <c>HTTP_NO_ERROR</c>
      <c>0x01</c>
      <c>No error</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_REFUSED</c>
      <c>0x02</c>
      <c>Client refused pushed content</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_INTERNAL_ERROR</c>
      <c>0x03</c>
      <c>Internal error</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_PUSH_ALREADY_IN_CACHE</c>
      <c>0x04</c>
      <c>Pushed content already cached</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_REQUEST_CANCELLED</c>
      <c>0x05</c>
      <c>Data no longer needed</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_HPACK_DECOMPRESSION_FAILED</c>
      <c>0x06</c>
      <c>HPACK cannot continue</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_CONNECT_ERROR</c>
      <c>0x07</c>
      <c>TCP reset or error on CONNECT request</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_EXCESSIVE_LOAD</c>
      <c>0x08</c>
      <c>Peer generating excessive load</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_VERSION_FALLBACK</c>
      <c>0x09</c>
      <c>Retry over HTTP/2</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_HEADERS</c>
      <c>0x0A</c>
      <c>Invalid HEADERS frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_PRIORITY</c>
      <c>0x0B</c>
      <c>Invalid PRIORITY frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_SETTINGS</c>
      <c>0x0C</c>
      <c>Invalid SETTINGS frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_PUSH_PROMISE</c>
      <c>0x0D</c>
      <c>Invalid PUSH_PROMISE frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_DATA</c>
      <c>0x0E</c>
      <c>Invalid DATA frame</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_INTERRUPTED_HEADERS</c>
      <c>0x0F</c>
      <c>Incomplete HEADERS block</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_WRONG_STREAM</c>
      <c>0x10</c>
      <c>A frame was sent on the wrong stream</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MULTIPLE_SETTINGS</c>
      <c>0x11</c>
      <c>Multiple SETTINGS frames</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_PUSH</c>
      <c>0x12</c>
      <c>Invalid push stream header</c>
      <c><xref target="http-error-codes"/></c>
      <c>HTTP_MALFORMED_MAX_PUSH_ID</c>
      <c>0x13</c>
      <c>Invalid MAX_PUSH_ID frame</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 year="2017" month="October"/>
  </front>
  <seriesInfo name="Internet-Draft" value="draft-ietf-quic-transport-07"/>
</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="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="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="RFC7541" target='https://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='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>

</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-06" title="Since draft-ietf-quic-http-06">

<t>Nothing yet.</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:
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
BTWlPrn/C7eTFinr8QAA

-->

</rfc>

