<?xml version="1.0" encoding="UTF-8"?>
<!--
    This XML document is the output of clean-for-DTD.xslt; a tool that strips
    extensions to RFC2629(bis) from documents for processing with xml2rfc.
-->
<!--TARGET-GENERATOR: 201706-->
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?><!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.3 -->
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<!DOCTYPE rfc
  PUBLIC "" "rfc2629.dtd">
<rfc ipr="trust200902" docName="draft-ietf-httpbis-origin-frame-04" category="std" obsoletes="" updates="" submissionType="IETF"><front><title abbrev="ORIGIN Frames">The ORIGIN HTTP/2 Frame</title><author initials="M." surname="Nottingham" fullname="Mark Nottingham"><organization/><address><email>mnot@mnot.net</email><uri>https://www.mnot.net/</uri></address></author><author initials="E." surname="Nygren" fullname="Erik Nygren"><organization>Akamai</organization><address><email>nygren@akamai.com</email></address></author><date year="2017"/><area>General</area><workgroup>HTTP Working Group</workgroup><keyword>Internet-Draft</keyword><abstract><t>This document specifies the ORIGIN frame for HTTP/2, to indicate what origins are available on a
given connection.</t></abstract><note title="Note to Readers"><t>Discussion of this draft takes place on the HTTP working group mailing list
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t><t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source
code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/origin-frame">https://github.com/httpwg/http-extensions/labels/origin-frame</eref>.</t></note></front><middle><section anchor="introduction" toc="default" title="Introduction"><t>HTTP/2 <xref target="RFC7540" format="default"/> allows clients to coalesce different origins <xref target="RFC6454" format="default"/> onto the same
connection when certain conditions are met. However, in certain cases, a connection is not
usable for a coalesced origin, so the 421 (Misdirected Request) status code (<xref target="RFC7540" format="default"/>, Section
9.1.2) was defined.</t><t>Using a status code in this manner allows clients to recover from misdirected requests, but at the
penalty of adding latency. To address that, this specification defines a new HTTP/2 frame type,
“ORIGIN”, to allow servers to indicate what origins a connection is usable for.</t><t>Additionally, experience has shown that HTTP/2’s requirement to establish server authority using
both DNS and the server’s certificate is onerous. This specification relaxes the requirement to
check DNS when the ORIGIN frame is in use. Doing so has additional benefits, such as removing the
latency associated with some DNS lookups.</t><section anchor="notational-conventions" toc="default" title="Notational Conventions"><t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”,
“RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in
<xref target="RFC2119" format="default"/>.</t></section></section><section anchor="the-origin-http2-frame" toc="default" title="The ORIGIN HTTP/2 Frame"><t>The ORIGIN HTTP/2 frame (<xref target="RFC7540" format="default"/>, Section 4) allows a server to indicate what origin(s)
<xref target="RFC6454" format="default"/> the server would like the client to consider as members of the Origin Set (<xref target="set" format="default"/>)
for the connection it occurs within.</t><section anchor="syntax" toc="default" title="Syntax"><t>The ORIGIN frame type is 0xc (decimal 12), and contains zero to many Origin-Entry.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
+-------------------------------+-------------------------------+
|         Origin-Entry (*)                                    ...
+-------------------------------+-------------------------------+
]]></artwork></figure><t>An Origin-Entry is a length-delimited string:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork xml:space="preserve" name="" type="" align="left" alt="" width="" height=""><![CDATA[
+-------------------------------+-------------------------------+
|         Origin-Len (16)       | ASCII-Origin?               ...
+-------------------------------+-------------------------------+
]]></artwork></figure><t>Specifically:</t><t><list style="hanging"><t hangText="Origin-Len:">
  An unsigned, 16-bit integer indicating the length, in octets, of the ASCII-Origin field.</t><t hangText="Origin:">
  An OPTIONAL sequence of characters containing the ASCII serialization of an origin (<xref target="RFC6454" format="default"/>, Section 6.2) that the sender believes this connection is or could be authoritative for.</t></list></t><t>The ORIGIN frame does not define any flags. However, future updates to this specification MAY
define flags. See <xref target="process" format="default"/>.</t></section><section anchor="process" toc="default" title="Processing ORIGIN Frames"><t>The ORIGIN frame is a non-critical extension to HTTP/2. Endpoints that do not support this frame
can safely ignore it upon receipt.</t><t>When received by an implementing client, it is used to initialise and manipulate the Origin Set
(see <xref target="set" format="default"/>), thereby changing how the client establishes authority for origin servers (see
<xref target="authority" format="default"/>).</t><t>The origin frame MUST be sent on stream 0; an ORIGIN frame on any other stream is invalid and MUST
be ignored.</t><t>Likewise, the ORIGIN frame is only valid on connections with the “h2” protocol identifier, or when
specifically nominated by the protocol’s definition; it MUST be ignored when received on a
connection with the “h2c” protocol identifier.</t><t>This specification does not define any flags for the ORIGIN frame, but future updates might use
them to change its semantics. The first four flags (0x1, 0x2, 0x4 and 0x8) are reserved for
backwards-incompatible changes, and therefore when any of them are set, the ORIGIN frame containing
them MUST be ignored by clients conforming to this specification, unless the flag’s semantics are
understood. The remaining flags are reserved for backwards-compatible changes, and do not affect
processing by clients conformant to this specification.</t><t>The ORIGIN frame describes a property of the connection, and therefore is processed hop-by-hop. An
intermediary MUST NOT forward ORIGIN frames. Clients configured to use a proxy MUST ignore any
ORIGIN frames received from it.</t><t>Each ASCII-Origin field in the frame’s payload MUST be parsed as an ASCII serialisation of an
origin (<xref target="RFC6454" format="default"/>, Section 6.2). If parsing fails, the field MUST be ignored.</t><t>See <xref target="algo" format="default"/> for an illustrative algorithm for processing ORIGIN frames.</t></section><section anchor="set" toc="default" title="The Origin Set"><t>The set of origins (as per <xref target="RFC6454" format="default"/>) that a given connection might be used for is known in this
specification as the Origin Set.</t><t>By default, the Origin Set for a connection is uninitialised. When an ORIGIN frame is first received
and successfully processed by a client, the connection’s Origin Set is defined to contain an initial
origin.  The initial origin is composed from:</t><t><list style="symbols"><t>Scheme: “https”</t><t>Host: the value sent in Server Name Indication (SNI, <xref target="RFC6066" format="default"/> Section 3), converted to lower case</t><t>Port: the remote port of the connection (i.e., the server’s port)</t></list></t><t>The contents of that ORIGIN frame (and subsequent ones) allows the server to incrementally add new
origins to the Origin Set, as described in <xref target="process" format="default"/>.</t><t>The Origin Set is also affected by the 421 (Misdirected Request) response status code, defined in
<xref target="RFC7540" format="default"/> Section 9.1.2. Upon receipt of a response with this status code, implementing clients
MUST create the ASCII serialisation of the corresponding request’s origin (as per <xref target="RFC6454" format="default"/>,
Section 6.2) and remove it from the connection’s Origin Set, if present.</t><t><list style="hanging"><t hangText="Note:">
  When sending an ORIGIN frame to a connection that is initialised as an Alternative Service
<xref target="RFC7838" format="default"/>, the initial origin set <xref target="set" format="default"/> will contain an origin with the appropriate
scheme and hostname (since Alternative Services specifies that the origin’s hostname be sent
in SNI). However, it is possible that the port will be different than that of the intended
origin, since the initial origin set is calculated using the actual port in use, which can be
different for the alternative service. In this case, the intended origin needs to be sent in
the ORIGIN frame explicitly.</t><t>For example, a client making requests for “https://example.com” is directed to an alternative
service at (“h2”, “x.example.net”, “8443”).  If this alternative service sends an ORIGIN
frame, the initial origin will be “https://example.com:8443”.  The client will not be able to
use the alternative service to make requests for “https://example.com” unless that origin is
explicitly included in the ORIGIN frame.</t></list></t></section><section anchor="authority" toc="default" title="Authority, Push and Coalescing with ORIGIN"><t><xref target="RFC7540" format="default"/>, Section 10.1 uses both DNS and the presented TLS certificate to establish the origin
server(s) that a connection is authoritative for, just as HTTP/1.1 does in <xref target="RFC7230" format="default"/>.</t><t>Furthermore, <xref target="RFC7540" format="default"/> Section 9.1.1 explicitly allows a connection to be used for more than one
origin server, if it is authoritative. This affects what requests can be sent on the connection,
both in HEADERS frame by the client and as PUSH_PROMISE frames from the server (<xref target="RFC7540" format="default"/>, Section 8.2.2).</t><t>Once an Origin Set has been initialised for a connection, clients that implement this specification
use it to help determine what the connection is authoritative for. Specifically, such clients MUST
NOT consider a connection to be authoritative for an origin not present in the Origin Set, and
SHOULD use the connection for all requests to origins in the Origin Set for which the connection is
authoritative, unless there are operational reasons for opening a new connection.</t><t>Note that for a connection to be considered authoritative for a given origin, the client is still
required to obtain a certificate that passes suitable checks; see <xref target="RFC7540" format="default"/>
Section 9.1.1 for more information. This includes verifying that the host matches a <spanx style="verb" xml:space="preserve">dNSName</spanx> value
from the certificate <spanx style="verb" xml:space="preserve">subjectAltName</spanx> field (using the wildcard rules defined in <xref target="RFC2818" format="default"/>; see
also <xref target="RFC5280" format="default"/> Section 4.2.1.6).</t><t>Additionally, clients MAY avoid consulting DNS to establish the connection’s authority for new
requests; however, those that do so face new risks, as explained in <xref target="sc" format="default"/></t><t>Because ORIGIN can change the set of origins a connection is used for over time, it is possible
that a client might have more than one viable connection to an origin open at any time. When this
occurs, clients SHOULD not emit new requests on any connection whose Origin Set is a proper subset
of another connection’s Origin Set, and SHOULD close it once all outstanding requests are satisfied.</t><t>The Origin Set is unaffected by any alternative services <xref target="RFC7838" format="default"/> advertisements made by the
server.  Advertising an alternative service does not affect whether a server is authoritative.</t></section></section><section anchor="iana-considerations" toc="default" title="IANA Considerations"><t>This specification adds an entry to the “HTTP/2 Frame Type” registry.</t><t><list style="symbols"><t>Frame Type: ORIGIN</t><t>Code: 0xc</t><t>Specification: [this document]</t></list></t></section><section anchor="sc" toc="default" title="Security Considerations"><t>Clients that blindly trust the ORIGIN frame’s contents will be vulnerable to a large number of
attacks. See <xref target="authority" format="default"/> for mitigations.</t><t>Relaxing the requirement to consult DNS when determining authority for an origin means that an
attacker who possesses a valid certificate no longer needs to be on-path to redirect traffic to
them; instead of modifying DNS, they need only convince the user to visit another Web site in
order to coalesce connections to the target onto their existing connection.</t><t>As a result, clients opting not to consult DNS ought to employ some alternative means to increase
confidence that the certificate is legitimate. Examples of mechanisms that can give additional
confidence in a certificate include checking for a Signed Certificate Timestamp <xref target="RFC6929" format="default"/> and
performing certificate revocation checks.</t><t>Clients opting not to consult DNS ought to do so only if they have a high degree of confidence that
the certificate is legitimate. For instance, clients might skip consulting DNS only if they receive
proof of inclusion in a Certificate Transparency log <xref target="RFC6929" format="default"/> or they have a recent OCSP
response <xref target="RFC6960" format="default"/> (possibly using the “status_request” TLS extension <xref target="RFC6066" format="default"/>) showing that
the certificate was not revoked.</t><t>The Origin Set’s size is unbounded by this specification, and thus could be used by attackers to
exhaust client resources. To mitigate this risk, clients can monitor their state commitment and
close the connection if it is too high.</t></section></middle><back><references title="Normative References"><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="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="RFC6454" target="https://www.rfc-editor.org/info/rfc6454"><front><title>The Web Origin Concept</title><author initials="A." surname="Barth" fullname="A. Barth"><organization/></author><date year="2011" month="December"/><abstract><t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="6454"/><seriesInfo name="DOI" value="10.17487/RFC6454"/></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, "The Transport Layer Security (TLS) Protocol Version 1.2".  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="RFC2818" target="https://www.rfc-editor.org/info/rfc2818"><front><title>HTTP Over TLS</title><author initials="E." surname="Rescorla" fullname="E. Rescorla"><organization/></author><date year="2000" month="May"/><abstract><t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t></abstract></front><seriesInfo name="RFC" value="2818"/><seriesInfo name="DOI" value="10.17487/RFC2818"/></reference><reference anchor="RFC5280" target="https://www.rfc-editor.org/info/rfc5280"><front><title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title><author initials="D." surname="Cooper" fullname="D. Cooper"><organization/></author><author initials="S." surname="Santesson" fullname="S. Santesson"><organization/></author><author initials="S." surname="Farrell" fullname="S. Farrell"><organization/></author><author initials="S." surname="Boeyen" fullname="S. Boeyen"><organization/></author><author initials="R." surname="Housley" fullname="R. Housley"><organization/></author><author initials="W." surname="Polk" fullname="W. Polk"><organization/></author><date year="2008" month="May"/><abstract><t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="5280"/><seriesInfo name="DOI" value="10.17487/RFC5280"/></reference></references><references title="Informative References"><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 "Alternative Services" 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 "http" and "https" 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="RFC6929" target="https://www.rfc-editor.org/info/rfc6929"><front><title>Remote Authentication Dial In User Service (RADIUS) Protocol Extensions</title><author initials="A." surname="DeKok" fullname="A. DeKok"><organization/></author><author initials="A." surname="Lior" fullname="A. Lior"><organization/></author><date year="2013" month="April"/><abstract><t>The Remote Authentication Dial-In User Service (RADIUS) protocol is nearing exhaustion of its current 8-bit Attribute Type space.  In addition, experience shows a growing need for complex grouping, along with attributes that can carry more than 253 octets of data.  This document defines changes to RADIUS that address all of the above problems.</t></abstract></front><seriesInfo name="RFC" value="6929"/><seriesInfo name="DOI" value="10.17487/RFC6929"/></reference><reference anchor="RFC6960" target="https://www.rfc-editor.org/info/rfc6960"><front><title>X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP</title><author initials="S." surname="Santesson" fullname="S. Santesson"><organization/></author><author initials="M." surname="Myers" fullname="M. Myers"><organization/></author><author initials="R." surname="Ankney" fullname="R. Ankney"><organization/></author><author initials="A." surname="Malpani" fullname="A. Malpani"><organization/></author><author initials="S." surname="Galperin" fullname="S. Galperin"><organization/></author><author initials="C." surname="Adams" fullname="C. Adams"><organization/></author><date year="2013" month="June"/><abstract><t>This document specifies a protocol useful in determining the current status of a digital certificate without requiring Certificate Revocation Lists (CRLs). Additional mechanisms addressing PKIX operational requirements are specified in separate documents.  This document obsoletes RFCs 2560 and 6277.  It also updates RFC 5912.</t></abstract></front><seriesInfo name="RFC" value="6960"/><seriesInfo name="DOI" value="10.17487/RFC6960"/></reference><reference anchor="RFC5988" target="https://www.rfc-editor.org/info/rfc5988"><front><title>Web Linking</title><author initials="M." surname="Nottingham" fullname="M. Nottingham"><organization/></author><date year="2010" month="October"/><abstract><t>This document specifies relation types for Web links, and defines a registry for them.  It also defines the use of such links in HTTP headers with the Link header field.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="5988"/><seriesInfo name="DOI" value="10.17487/RFC5988"/></reference></references><section anchor="algo" toc="default" title="Non-Normative Processing Algorithm"><t>The following algorithm illustrates how a client could handle received ORIGIN frames:</t><t><list style="numbers"><t>If the client is configured to use a proxy for the connection, ignore the frame and stop processing.</t><t>If the connection is not identified with the “h2” protocol identifier or another protocol that has explicitly opted into this specification, ignore the frame and stop processing.</t><t>If the frame occurs upon any stream except stream 0, ignore the frame and stop processing.</t><t>If any of the flags 0x1, 0x2, 0x4 or 0x8 are set, ignore the frame and stop processing.</t><t>If no previous ORIGIN frame on the connection has reached this step, initialise the Origin Set as per <xref target="set" format="default"/>.</t><t>For each <spanx style="verb" xml:space="preserve">Origin-Entry</spanx> in the frame payload:
  <list style="numbers"><t>Parse <spanx style="verb" xml:space="preserve">ASCII-Origin</spanx> as an ASCII serialization of an origin (<xref target="RFC6454" format="default"/>, Section 6.2) and let the result be <spanx style="verb" xml:space="preserve">parsed_origin</spanx>. If parsing fails, skip to the next <spanx style="verb" xml:space="preserve">Origin-Entry</spanx>.</t><t>Add <spanx style="verb" xml:space="preserve">parsed_origin</spanx> to the Origin Set.</t></list></t></list></t></section><section anchor="server-ops" toc="default" title="Operational Considerations for Servers"><t>The ORIGIN frame allows a server to indicate for which origins a given connection ought be used.
The set of origins advertised using this mechanism is under control of the server; servers are not
obligated to use it, or to advertise all origins which they might be able to answer a request for.</t><t>For example, it can be used to inform the client that the connection is to only be used for the
SNI-based origin, by sending an empty ORIGIN frame. Or, a larger number of origins can be indicated
by including a payload.</t><t>Generally, this information is most useful to send before sending any part of a response that might
initiate a new connection; for example, <spanx style="verb" xml:space="preserve">Link</spanx> headers <xref target="RFC5988" format="default"/> in a response HEADERS, or links
in the response body.</t><t>Therefore, the ORIGIN frame ought be sent as soon as possible on a connection, ideally before any
HEADERS or PUSH_PROMISE frames.</t><t>However, if it’s desirable to associate a large number of origins with a connection, doing so might
introduce end-user perceived latency, due to their size. As a result, it might be necessary to
select a “core” set of origins to send initially, expanding the set of origins the connection is
used for with subsequent ORIGIN frames later (e.g., when the connection is idle).</t><t>That said, senders are encouraged to include as many origins as practical within a single ORIGIN
frame; clients need to make decisions about creating connections on the fly, and if the origin
set is split across many frames, their behaviour might be suboptimal.</t><t>Senders take note that, as per <xref target="RFC6454" format="default"/> Section 4, the values in an ORIGIN header need to be
case-normalised before serialisation.</t><t>Finally, servers that host alternative services <xref target="RFC7838" format="default"/> will need to explicitly advertise
their origins when sending ORIGIN, because the default contents of the Origin Set (as per <xref target="set" format="default"/>)
do not contain any Alternative Services’ origins, even if they have been used previously on the
connection.</t></section></back><!-- ##markdown-source:
H4sIAIa5nVkAA7VbbW8bOZL+zl/Bcz7E3pPkl7xsohxmx5t4JgYSJxc7GCwO
i5jqpiSuW919zW7bmmzut99TVWS/SPIkB9wGmLEstchivTz1VBU9Ho9V7erM
TvXV0uoPn85/Pb/Qb6+uPh6e6F8qs7LKzGaVvZ3Gz/hNr9IiyfFiqtPKzOux
s/V8vKzrcub8uKjcwuXjOT05zkxtfa1S/Jjqk6PjP6sELxdFtZ5qX6dKubKa
6rpqfH1ydPTy6ESZypqp/tXmtjKZuiuqm0VVNOWUxVI3do230qk+z2tb5bYe
vyEJlPK1ydMvJitybLSGiKWb6v+qi2Sk8T+XpzavR9oXVV3Zucer9Sq8qCuX
4KOkWJUmvFjhYXzk8szl9u9KmaZeFtVU6bHS+OdyP9XvJ/qiqGuXL5ZmxW+L
Rt6b6mbzk6JamNz9bmpX5FN+x66My6Z6lRf1z/S/CY7CHzQV5CZV+unh4d3d
3SR+ejjY/Qy7rxeVzXs7n1Xupv/uYFd9emOwZ3/znB/92fAHExxbqbyoVnj+
1pKUn355fXJ8/HIKI+Xz7gOlxuOxNjMoDvpS6mrpvIZDNKQ17UubuLmzXted
R7EvaKwRfItsgnOkjpxB3y1NrcVrvIb5tbmFfGaWWV3k2qgFts1hljy3CZ1l
IhJAL/bLBf2vLr58sia1lVfqjfNJ4z0e08UcMpBs5CG6NjcQqsxMwsuSdCSM
Jg+DqTR7mSbN0G+Zg9fut349vlv8fPdkAo0ejCCvS5bakazJErKlGvL/R7QZ
fdNP5OHDU3nCH35sZplLDvsLHv6Eg/wWdv+Vd2/1DAETk+sZKa3Juw2wPv24
W0wWrl42s4krDn96BbduqsSqpEihPDzuvG9wWBKFtd5Tw85lSe6wINwgbME/
xva+tjmp0x/CJDbzh/34/inYYuXSNLNKPaK4rIq0YUMpFaDk69d/gzP9+dnT
o2/ftMmy4s7rJHMUZeQJSWEy62GX1M3ntiI3iu4g33z+9NlTfLPI8TAZzhMy
dQ4Bi5CD2Ko2jh0ldfS2ONPK1hP9trizt7aikO6eM94iyE3Ps8iocCvVePY+
Up1ppUuDUIQiLMXTk2O9/9751FX4Oj7/ZP8baq8PgCmmbnBEssf+169/aQ8/
0peyk3o5OZ6cHOg7A8PYOWAmhSo/e/IFM/i+y8V8KwMpqx3aw+YFzoYgK1Yw
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
SLCzR9ZEPJL9QPXL9P8FFIIOWAM4AAA=

--></rfc>
