<?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.7 -->
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:x="http://purl.org/net/xml2rfc/ext"
     category="exp"
     docName="draft-ietf-httpbis-client-hints-05"
     ipr="trust200902"
     submissionType="IETF">
   <x:feedback template="mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22\&amp;amp;body=%3c{ref}%3e:"/>
   <front>
      <title>HTTP Client Hints</title>
      <author fullname="Ilya Grigorik" initials="I." surname="Grigorik">
         <organization>Google</organization>
         <address>
            <email>ilya@igvita.com</email>
            <uri>https://www.igvita.com/</uri>
         </address>
      </author>
      <date year="2018" month="1" day="26"/>
      <area>Applications and Real-Time</area>
      <workgroup>HTTP</workgroup>
      <keyword>Content Negotiation</keyword>
      <abstract>
         <t>An increasing diversity of Web-connected devices and software capabilities has created a need to deliver optimized content for each device.</t>
         <t>This specification defines an extensible and configurable set of HTTP request header fields, colloquially known as Client Hints, to address this. They are intended to be used as input to proactive content negotiation; just as the Accept header field allows user agents to indicate what formats they prefer, Client Hints allow user agents to indicate device and agent specific preferences.</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/client-hints">https://github.com/httpwg/http-extensions/labels/client-hints</eref>.</t>
      </note>
   </front>
   <middle>
      <section anchor="introduction" title="Introduction">
         <t>There are thousands of different devices accessing the web, each with different device capabilities and preference information. These device capabilities include hardware and software characteristics, as well as dynamic user and client preferences.</t>
         <t>One way to infer some of these capabilities is through User-Agent (<xref target="RFC7231" x:fmt="of" x:sec="5.5.3"/>) header field detection against an established database of client signatures. However, this technique requires acquiring such a database, integrating it into the serving path, and keeping it up to date. However, even once this infrastructure is deployed, user agent sniffing has numerous limitations:</t>
         <t>
            <list style="symbols">
               <t>User agent detection cannot reliably identify all static variables</t>
               <t>User agent detection cannot infer any dynamic client preferences</t>
               <t>User agent detection requires an external device database</t>
               <t>User agent detection is not cache friendly</t>
            </list>
         </t>
         <t>A popular alternative strategy is to use HTTP cookies (<xref target="RFC6265"/>) to communicate some information about the user agent. However, this approach is also not cache friendly, bound by same origin policy, and imposes additional client-side latency by requiring JavaScript execution to create and manage HTTP cookies.</t>
         <t>This document defines a set of new request header fields that allow user agent to perform proactive content negotiation (<xref target="RFC7231" x:fmt="of" x:sec="3.4.1"/>) by indicating device and agent specific preferences, through a mechanism similar to the Accept header field which is used to indicate preferred response formats.</t>
         <t>Client Hints does not supersede or replace the User-Agent header field. Existing device detection mechanisms can continue to use both mechanisms if necessary. By advertising its capabilities within a request header field, Client Hints allows for cache friendly and proactive content negotiation.</t>
         <section anchor="notational-conventions" title="Notational Conventions">
            <t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/>
               <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
            <t>This document uses the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> with the list rule extension defined in <xref target="RFC7230" x:fmt="," x:sec="B"/>. It includes by reference the DIGIT rule from <xref target="RFC5234"/> and the OWS and field-name rules from <xref target="RFC7230"/>.</t>
         </section>
      </section>
      <section anchor="client-hint-request-header-fields"
               title="Client Hint Request Header Fields">
         <t>A Client Hint request header field is a HTTP header field that is used by HTTP clients to indicate configuration data that can be used by the server to select an appropriate response. Each one conveys client preferences that the server can use to adapt and optimize the response.</t>
         <section anchor="sending-client-hints" title="Sending Client Hints">
            <t>Clients control which Client Hints are sent in requests, based on their default settings, user configuration, and server preferences. The client and server can use an opt-in mechanism outlined below to negotiate which fields should be sent to allow for efficient content adaption, and optinally use additional mechanisms to negotiate delegation policies that control access of third parties to same fields.</t>
            <t>Implementers should be aware of the passive fingerprinting and network information disclosure implications when implementing support for Client Hints, and follow the considerations outlined in “Security Considerations” section of this document.</t>
         </section>
         <section anchor="server-processing-of-client-hints"
                  title="Server Processing of Client Hints">
            <t>When presented with a request that contains one or more client hint header fields, servers can optimize the response based upon the information in them. When doing so, and if the resource is cacheable, the server MUST also generate a Vary response header field (<xref target="RFC7231" x:fmt="of" x:sec="7.1.4"/>) to indicate which hints can affect the selected response and whether the selected response is appropriate for a later request.</t>
            <t>Further, depending on the hint used, the server can generate additional response header fields to convey related values to aid client processing. For example, this specification defines the “Content-DPR” response header field that needs to be returned by the server when the “DPR” hint is used to select the response.</t>
            <section anchor="accept-ch"
                     title="Advertising Support via Accept-CH Header Field">
               <t>Servers can advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute (<xref target="HTML5"/>).</t>
               <figure>
                  <artwork type="abnf7230">
  Accept-CH = #field-name
</artwork>
               </figure>
               <t>For example:</t>
               <figure>
                  <artwork type="example">
  Accept-CH: DPR, Width, Viewport-Width
</artwork>
               </figure>
               <t>When a client receives an HTTP response advertising support for Client Hints, it should process it as origin (<xref target="RFC6454"/>) opt-in to receive Client Hint header fields advertised in the field-value. The opt-in MUST be delivered over a secure transport.</t>
               <t>For example, based on Accept-CH example above, a user agent could append DPR, Width, and Viewport-Width header fields to all same-origin resource requests initiated by the page constructed from the response.</t>
            </section>
            <section anchor="accept-ch-lifetime" title="The Accept-CH-Lifetime Header Field">
               <t>Servers can ask the client to remember the set of Client Hints that the server supports for a specified period of time, to enable delivery of Client Hints on subsequent requests to the server’s origin (<xref target="RFC6454"/>).</t>
               <figure>
                  <artwork type="abnf7230">
  Accept-CH-Lifetime = #delta-seconds
</artwork>
               </figure>
               <t>When a client receives an HTTP response that contains Accept-CH-Lifetime header field, the field-value indicates that the Accept-CH preference SHOULD be persisted and bound to the origin, and be considered stale after response’s age (<xref target="RFC7234"/>, section 4.2) is greater than the specified number of seconds. The preference MUST be delivered over a secure transport, and MUST NOT be persisted for an origin that isn’t HTTPS.</t>
               <figure>
                  <artwork type="example">
  Accept-CH: DPR, Width
  Accept-CH: Viewport-Width
  Accept-CH-Lifetime: 86400
</artwork>
               </figure>
               <t>For example, based on the Accept-CH and Accept-CH-Lifetime example above, which is received from “https://bar.example.com” in response to a resource request initiated by “https://foo.example.com”, both delivered over a secure transport: a user agent SHOULD persist an Accept-CH preference bound to “https://foo.example.com”, for requests initiated to “https://bar.example.com” from “https://foo.example.com”, for up to 86400 seconds (1 day). This preference SHOULD NOT extend to requests initiated to “https://bar.example.com” from other origins.</t>
               <t>If Accept-CH-Lifetime occurs in a message more than once, the last value overrides all previous occurrences.</t>
            </section>
            <section anchor="interaction-with-caches" title="Interaction with Caches">
               <t>When selecting an optimized response based on one or more Client Hints, and if the resource is cacheable, the server needs to generate a Vary response header field (<xref target="RFC7234"/>) to indicate which hints can affect the selected response and whether the selected response is appropriate for a later request.</t>
               <figure>
                  <artwork type="example">
  Vary: DPR
</artwork>
               </figure>
               <t>Above example indicates that the cache key needs to include the DPR header field.</t>
               <figure>
                  <artwork type="example">
  Vary: DPR, Width
</artwork>
               </figure>
               <t>Above example indicates that the cache key needs to include the DPR and Width header fields.</t>
            </section>
         </section>
      </section>
      <section anchor="client-hints" title="Client Hints">
         <section anchor="dpr" title="The DPR Header Field">
            <t>The “DPR” request header field is a number that indicates the client’s current Device Pixel Ratio (DPR), which is the ratio of physical pixels over CSS px (Section 5.2 of <xref target="CSSVAL"/>) of the layout viewport (Section 9.1.1 of <xref target="CSS2"/>) on the device.</t>
            <figure>
               <artwork type="abnf7230">
  DPR = 1*DIGIT [ "." 1*DIGIT ]
</artwork>
            </figure>
            <t>If DPR occurs in a message more than once, the last value overrides all previous occurrences.</t>
            <section anchor="content-dpr" title="Confirming Selected DPR">
               <t>The “Content-DPR” response header field is a number that indicates the ratio between physical pixels over CSS px of the selected image response.</t>
               <figure>
                  <artwork type="abnf7230">
  Content-DPR = 1*DIGIT [ "." 1*DIGIT ]
</artwork>
               </figure>
               <t>DPR ratio affects the calculation of intrinsic size of image resources on the client - i.e. typically, the client automatically scales the natural size of the image by the DPR ratio to derive its display dimensions. As a result, the server MUST explicitly indicate the DPR of the selected image response whenever the DPR hint is used, and the client MUST use the DPR value returned by the server to perform its calculations. In case the server returned Content-DPR value contradicts previous client-side DPR indication, the server returned value MUST take precedence.</t>
               <t>Note that DPR confirmation is only required for image responses, and the server does not need to confirm the resource width as this value can be derived from the resource itself once it is decoded by the client.</t>
               <t>If Content-DPR occurs in a message more than once, the last value overrides all previous occurrences.</t>
            </section>
         </section>
         <section anchor="width" title="The Width Header Field">
            <t>The “Width” request header field is a number that indicates the desired resource width in physical px (i.e. intrinsic size of an image). The provided physical px value is a number rounded to the smallest following integer (i.e. ceiling value).</t>
            <figure>
               <artwork type="abnf7230">
  Width = 1*DIGIT
</artwork>
            </figure>
            <t>If the desired resource width is not known at the time of the request or the resource does not have a display width, the Width header field can be omitted. If Width occurs in a message more than once, the last value overrides all previous occurrences.</t>
         </section>
         <section anchor="viewport-width" title="The Viewport-Width Header Field">
            <t>The “Viewport-Width” request header field is a number that indicates the layout viewport width in CSS px. The provided CSS px value is a number rounded to the smallest following integer (i.e. ceiling value).</t>
            <figure>
               <artwork type="abnf7230">
  Viewport-Width = 1*DIGIT
</artwork>
            </figure>
            <t>If Viewport-Width occurs in a message more than once, the last value overrides all previous occurrences.</t>
         </section>
         <section anchor="save-data" title="The Save-Data Header Field">
            <t>The “Save-Data” request header field consists of one or more tokens that indicate client’s preference for reduced data usage, due to high transfer costs, slow connection speeds, or other reasons.</t>
            <figure>
               <artwork type="abnf7230">
  Save-Data = sd-token *( OWS ";" OWS [sd-token] )
  sd-token = token
</artwork>
            </figure>
            <t>This document defines the “on” sd-token value, which is used as a signal indicating explicit user opt-in into a reduced data usage mode on the client, and when communicated to origins allows them to deliver alternate content honoring such preference - e.g. smaller image and video resources, alternate markup, and so on. New token and extension token values can be defined by updates to this specification.</t>
            <t>If Save-Data occurs in a message more than once, the last value overrides all previous occurrences.</t>
         </section>
      </section>
      <section anchor="examples" title="Examples">
         <t>For example, given the following request header fields:</t>
         <figure>
            <artwork type="example">
  DPR: 2.0
  Width: 320
  Viewport-Width: 320
</artwork>
         </figure>
         <t>The server knows that the device pixel ratio is 2.0, that the intended display width of the requested resource is 160 CSS px (320 physical pixels at 2x resolution), and that the viewport width is 320 CSS px.</t>
         <t>If the server uses above hints to perform resource selection for an image asset, it must confirm its selection via the Content-DPR response header to allow the client to calculate the appropriate intrinsic size of the image response. The server does not need to confirm resource width, only the ratio between physical pixels and CSS px of the selected image resource:</t>
         <figure>
            <artwork type="example">
  Content-DPR: 1.0
</artwork>
         </figure>
         <t>The Content-DPR response header field indicates to the client that the server has selected resource with DPR ratio of 1.0. The client can use this information to perform additional processing on the resource - for example, calculate the appropriate intrinsic size of the image resource such that it is displayed at the correct resolution.</t>
      </section>
      <section anchor="security-considerations" title="Security Considerations">
         <t>The request header fields defined in this specification, and those that extend it, expose information about the user’s environment to enable proactive content negotiation. Such information may reveal new information about the user and implementers ought to consider the following considerations, recommendations, and best practices.</t>
         <t>Transmitted Client Hints header fields SHOULD NOT provide new information that is otherwise not available to the application via other means, such as using HTML, CSS, or JavaScript. Further, sending highly granular data, such as image and viewport width may help identify users across multiple requests. Reducing the set of field values that can be expressed, or restricting them to an enumerated range where the advertised value is close but is not an exact representation of the current value, can improve privacy and reduce risk of linkability by ensuring that the same value is sent by multiple users. However, such precautions can still be insufficient for some types of data, especially data that can change over time.</t>
         <t>Implementers ought to consider both user and server controlled mechanisms and policies to control which Client Hints header fields are advertised:</t>
         <t>
            <list style="symbols">
               <t>Implementers SHOULD restrict delivery of some or all Client Hints header fields to the opt-in origin only, unless the opt-in origin has explicitly delegated permission to another origin to request Client Hints header fields.</t>
               <t>Implementers MAY provide user choice mechanisms so that users may balance privacy concerns with bandwidth limitations. However, implementers should also be aware that explaining the privacy implications of passive fingerprinting or network information disclosure to users may be challenging.</t>
               <t>Implementations specific to certain use cases or threat models MAY avoid transmitting some or all of Client Hints header fields. For example, avoid transmission of header fields that can carry higher risks of linkability.</t>
            </list>
         </t>
         <t>Implementers SHOULD support Client Hints opt-in mechanisms and MUST clear persisted opt-in preferences when site data, browsing history, browsing cache, or similar, are cleared.</t>
      </section>
      <section anchor="iana-considerations" title="IANA Considerations">
         <t>This document defines the “Accept-CH”, “DPR”, “Save-Data”, “Viewport-Width”, and “Width” HTTP request fields, “Accept-CH”, “Accept-CH-Lifetime”, and “Content-DPR” HTTP response field, and registers them in the Permanent Message Header Fields registry.</t>
         <section anchor="iana-accept-ch" title="Accept-CH">
            <t>
               <list style="symbols">
                  <t>Header field name: Accept-CH</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="accept-ch"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-accept-ch-lifetime" title="Accept-CH-Lifetime">
            <t>
               <list style="symbols">
                  <t>Header field name: Accept-CH-Lifetime</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="accept-ch-lifetime"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-content-dpr" title="Content-DPR">
            <t>
               <list style="symbols">
                  <t>Header field name: Content-DPR</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="content-dpr"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-dpr" title="DPR">
            <t>
               <list style="symbols">
                  <t>Header field name: DPR</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="dpr"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-save-data" title="Save-Data">
            <t>
               <list style="symbols">
                  <t>Header field name: Save-Data</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="save-data"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-viewport-width" title="Viewport-Width">
            <t>
               <list style="symbols">
                  <t>Header field name: Viewport-Width</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="viewport-width"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
         <section anchor="iana-width" title="Width">
            <t>
               <list style="symbols">
                  <t>Header field name: Width</t>
                  <t>Applicable protocol: HTTP</t>
                  <t>Status: standard</t>
                  <t>Author/Change controller: IETF</t>
                  <t>Specification document(s): <xref target="width"/> of this document</t>
                  <t>Related information: for Client Hints</t>
               </list>
            </t>
         </section>
      </section>
      <section anchor="acknowledgements" title="Acknowledgements">
         <t>Thanks to Mark Nottingham, Julian Reschke, Chris Bentzel, Yoav Weiss, Ben Greenstein, Tarun Bansal, Roy Fielding, Vasiliy Faronov, Ted Hardie, Jonas Sicking, and numerous other members of the IETF HTTP Working Group for invaluable help and feedback.</t>
      </section>
   </middle>
   <back>
      <references title="Normative References">
         <reference anchor="RFC5234">
            <front>
               <title>Augmented BNF for Syntax Specifications: ABNF</title>
               <author fullname="D. Crocker"
                       initials="D."
                       role="editor"
                       surname="Crocker"/>
               <author fullname="P. Overell" initials="P." surname="Overell"/>
               <date month="January" year="2008"/>
            </front>
            <seriesInfo name="STD" value="68"/>
            <seriesInfo name="RFC" value="5234"/>
            <seriesInfo name="DOI" value="10.17487/RFC5234"/>
         </reference>
         <reference anchor="RFC7230">
            <front>
               <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
               <author fullname="R. Fielding"
                       initials="R."
                       role="editor"
                       surname="Fielding"/>
               <author fullname="J. Reschke"
                       initials="J."
                       role="editor"
                       surname="Reschke"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7230"/>
            <seriesInfo name="DOI" value="10.17487/RFC7230"/>
         </reference>
         <reference anchor="RFC7231">
            <front>
               <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
               <author fullname="R. Fielding"
                       initials="R."
                       role="editor"
                       surname="Fielding"/>
               <author fullname="J. Reschke"
                       initials="J."
                       role="editor"
                       surname="Reschke"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7231"/>
            <seriesInfo name="DOI" value="10.17487/RFC7231"/>
         </reference>
         <reference anchor="RFC7234">
            <front>
               <title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
               <author fullname="R. Fielding"
                       initials="R."
                       role="editor"
                       surname="Fielding"/>
               <author fullname="M. Nottingham"
                       initials="M."
                       role="editor"
                       surname="Nottingham"/>
               <author fullname="J. Reschke"
                       initials="J."
                       role="editor"
                       surname="Reschke"/>
               <date month="June" year="2014"/>
            </front>
            <seriesInfo name="RFC" value="7234"/>
            <seriesInfo name="DOI" value="10.17487/RFC7234"/>
         </reference>
         <reference anchor="RFC6454">
            <front>
               <title>The Web Origin Concept</title>
               <author fullname="A. Barth" initials="A." surname="Barth"/>
               <date month="December" year="2011"/>
            </front>
            <seriesInfo name="RFC" value="6454"/>
            <seriesInfo name="DOI" value="10.17487/RFC6454"/>
         </reference>
         <reference anchor="HTML5" target="http://www.w3.org/TR/2014/REC-html5-20141028">
            <front>
               <title>HTML5</title>
               <author fullname="Ian Hickson" initials="I." surname="Hickson"/>
               <author fullname="Robin Berjon" initials="R." surname="Berjon"/>
               <author fullname="Steve Faulkner" initials="S." surname="Faulkner"/>
               <author fullname="Travis Leithead" initials="T." surname="Leithead"/>
               <author fullname="Erika Doyle Navara" initials="E." surname="Navara"/>
               <author fullname="Theresa O&amp;#039;Connor"
                       initials="T."
                       surname="O&amp;#039;Connor"/>
               <author fullname="Silvia Pfeiffer" initials="S." surname="Pfeiffer"/>
               <date day="28" month="October" year="2014"/>
            </front>
            <seriesInfo name="World Wide Web Consortium Recommendation"
                        value="REC-html5-20141028"/>
         </reference>
         <reference anchor="CSSVAL"
                    target="https://www.w3.org/TR/2016/CR-css-values-3-20160929">
            <front>
               <title>CSS Values and Units Module Level 3</title>
               <author fullname="Tab Atkins" initials="T." surname="Atkins"/>
               <author fullname="Elika Etemad" initials="E." surname="Etemad"/>
               <date day="29" month="September" year="2016"/>
            </front>
            <seriesInfo name="World Wide Web Consortium CR" value="CR-css-values-3-20160929"/>
         </reference>
         <reference anchor="CSS2" target="http://www.w3.org/TR/2011/REC-CSS2-20110607">
            <front>
               <title>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</title>
               <author initials="B." surname="Bos"/>
               <author initials="T." surname="Celic"/>
               <author initials="I." surname="Hickson"/>
               <author initials="H.W." surname="Lie"/>
               <date month="June" year="2011"/>
            </front>
            <seriesInfo name="W3C Recommendation" value="REC-CSS2-20110607"/>
         </reference>
         <reference anchor="RFC2119">
            <front>
               <title>Key words for use in RFCs to Indicate Requirement Levels</title>
               <author fullname="S. Bradner" initials="S." surname="Bradner"/>
               <date month="March" year="1997"/>
            </front>
            <seriesInfo name="BCP" value="14"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
         </reference>
         <reference anchor="RFC8174">
            <front>
               <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
               <author fullname="B. Leiba" initials="B." surname="Leiba"/>
               <date month="May" year="2017"/>
            </front>
            <seriesInfo name="BCP" value="14"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
         </reference>
      </references>
      <references title="Informative References">
         <reference anchor="RFC6265">
            <front>
               <title>HTTP State Management Mechanism</title>
               <author fullname="A. Barth" initials="A." surname="Barth"/>
               <date month="April" year="2011"/>
            </front>
            <seriesInfo name="RFC" value="6265"/>
            <seriesInfo name="DOI" value="10.17487/RFC6265"/>
         </reference>
         <reference anchor="KEY">
            <front>
               <title>The Key HTTP Response Header Field</title>
               <author fullname="Roy T. Fielding" initials="R" surname="Fielding"/>
               <author fullname="Mark Nottingham" initials="M" surname="Nottingham"/>
               <date day="1" month="March" year="2016"/>
            </front>
            <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-key-01"/>
         </reference>
      </references>
      <section anchor="interaction-with-key-response-header-field"
               title="Interaction with Key Response Header Field">
         <t>Client Hints may be combined with Key response header field (<xref target="KEY"/>) to enable fine-grained control of the cache key for improved cache efficiency. For example, the server can return the following set of instructions:</t>
         <figure>
            <artwork type="example">
  Key: DPR;partition=1.5:2.5:4.0
</artwork>
         </figure>
         <t>Above example indicates that the cache key needs to include the value of the DPR header field with three segments: less than 1.5, 1.5 to less than 2.5, and 4.0 or greater.</t>
         <figure>
            <artwork type="example">
  Key: Width;div=320
</artwork>
         </figure>
         <t>Above example indicates that the cache key needs to include the value of the Width header field and be partitioned into groups of 320: 0-320, 320-640, and so on.</t>
      </section>
      <section anchor="changes" title="Changes">
         <section anchor="since-00" title="Since -00">
            <t>
               <list style="symbols">
                  <t>Issue 168 (make Save-Data extensible) updated ABNF.</t>
                  <t>Issue 163 (CH review feedback) editorial feedback from httpwg list.</t>
                  <t>Issue 153 (NetInfo API citation) added normative reference.</t>
               </list>
            </t>
         </section>
         <section anchor="since-01" title="Since -01">
            <t>
               <list style="symbols">
                  <t>Issue 200: Moved Key reference to informative.</t>
                  <t>Issue 215: Extended passive fingerprinting and mitigation considerations.</t>
                  <t>Changed document status to experimental.</t>
               </list>
            </t>
         </section>
         <section anchor="since-02" title="Since -02">
            <t>
               <list style="symbols">
                  <t>Issue 239: Updated reference to CR-css-values-3</t>
                  <t>Issue 240: Updated reference for Network Information API</t>
                  <t>Issue 241: Consistency in IANA considerations</t>
                  <t>Issue 250: Clarified Accept-CH</t>
               </list>
            </t>
         </section>
         <section anchor="since-03" title="Since -03">
            <t>
               <list style="symbols">
                  <t>Issue 284: Extended guidance for Accept-CH</t>
                  <t>Issue 308: Editorial cleanup</t>
                  <t>Issue 306: Define Accept-CH-Lifetime</t>
               </list>
            </t>
         </section>
         <section anchor="since-04" title="Since -04">
            <t>
               <list style="symbols">
                  <t>Issue 361: Removed Downlink</t>
                  <t>Issue 361: Moved Key to appendix, plus other editorial feedback</t>
               </list>
            </t>
         </section>
         <section anchor="since-05" title="Since -05">
            <t>
               <list style="symbols">
                  <t>Issue 372: Scoped CH opt-in and delivery to secure transports</t>
                  <t>Issue 373: Bind CH opt-in to origin</t>
               </list>
            </t>
         </section>
         <section anchor="since-06" title="Since -06">
            <t>
               <list style="symbols">
                  <t>None</t>
               </list>
            </t>
         </section>
      </section>
   </back>
</rfc>
