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

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

<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc tocdepth="2"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-header-structure-03" category="std">

  <front>
    <title>Structured Headers for HTTP</title>

    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization>Fastly</organization>
      <address>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>
    <author initials="P-H." surname="Kamp" fullname="Poul-Henning Kamp">
      <organization>The Varnish Cache Project</organization>
      <address>
        <email>phk@varnish-cache.org</email>
      </address>
    </author>

    <date />

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document describes a set of data types and parsing algorithms associated with them that are intended to make it easier and safer to define and handle HTTP header fields. It is intended for use by new specifications of HTTP header fields as well as revisions of existing header field specifications when doing so does not cause interoperability issues.</t>



    </abstract>


    <note title="Note to Readers">


<t><spanx style="emph">RFC EDITOR: please remove this section before publication</spanx></t>

<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="https://httpwg.github.io/">https://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/header-structure">https://github.com/httpwg/http-extensions/labels/header-structure</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>Specifying the syntax of new HTTP header fields is an onerous task; even with the guidance in <xref target="RFC7231"/>, Section 8.3.1, there are many decisions – and pitfalls – for a prospective HTTP header field author.</t>

<t>Once a header field is defined, bespoke parsers for it often need to be written, because each header has slightly different handling of what looks like common syntax.</t>

<t>This document introduces structured HTTP header field values (hereafter, Structured Headers) to address these problems. Structured Headers define a generic, abstract model for header field values, along with a concrete serialisation for expressing that model in textual HTTP headers, as used by HTTP/1 <xref target="RFC7230"/> and HTTP/2 <xref target="RFC7540"/>.</t>

<t>HTTP headers that are defined as Structured Headers use the types defined in this specification to define their syntax and basic handling rules, thereby simplifying both their definition and parsing.</t>

<t>Additionally, future versions of HTTP can define alternative serialisations of the abstract model of Structured Headers, allowing headers that use it to be transmitted more efficiently without being redefined.</t>

<t>Note that it is not a goal of this document to redefine the syntax of existing HTTP headers; the mechanisms described herein are only intended to be used with headers that explicitly opt into them.</t>

<t>To specify a header field that uses Structured Headers, see <xref target="specify"/>.</t>

<t><xref target="types"/> defines a number of abstract data types that can be used in Structured Headers. Dictionaries and lists are only usable at the “top” level, while the remaining types can be specified appear at the top level or inside those structures.</t>

<t>Those abstract types can be serialised into textual headers – such as those used in HTTP/1 and HTTP/2 – using the algorithms described in <xref target="text"/>.</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"/>, including the DIGIT, ALPHA and DQUOTE rules from that document. It also includes the OWS rule from <xref target="RFC7230"/>.</t>

</section>
</section>
<section anchor="specify" title="Specifying Structured Headers">

<t>A HTTP header that uses Structured Headers need to be defined to do so explicitly; recipients and generators need to know that the requirements of this document are in effect. The simplest way to do that is by referencing this document in its definition.</t>

<t>The field’s definition will also need to specify the field-value’s allowed syntax, in terms of the types described in <xref target="types"/>, along with their associated semantics.</t>

<t>A header field definition cannot relax or otherwise modify the requirements of this specification; doing so would preclude handling by generic software.</t>

<t>However, header field authors are encouraged to clearly state additional constraints upon the syntax, as well as the consequences when those constraints are violated. Such additional constraints could include additional structure (e.g., a list of URLs <xref target="RFC3986"/> inside a string) that cannot be expressed using the primitives defined here.</t>

<t>For example:</t>

<figure><artwork><![CDATA[
# FooExample Header

The FooExample HTTP header field conveys a list of integers about how
much Foo the sender has.

FooExample is a Structured header [RFCxxxx]. Its value MUST be a
dictionary ([RFCxxxx], Section Y.Y).

The dictionary MUST contain:

* A member whose key is "foo", and whose value is an integer
  ([RFCxxxx], Section Y.Y), indicating the number of foos in
  the message.
* A member whose key is "barUrls", and whose value is a string
  ([RFCxxxx], Section Y.Y), conveying the Bar URLs for the message.
  See below for processing requirements.

If the parsed header field does not contain both, it MUST be ignored.

"barUrls" contains a space-separated list of URI-references ([RFC3986], 
Section 4.1):

   barURLs = URI-reference *( 1*SP URI-reference )

If a member of barURLs is not a valid URI-reference, it MUST be ignored.

If a member of barURLs is a relative reference ([RFC3986], Section 4.2),
it MUST be resolved ([RFC3986], Section 5) before being used.
]]></artwork></figure>

<t>Note that empty header field values are not allowed by the syntax, and therefore will be considered errors.</t>

</section>
<section anchor="text" title="Parsing Text into Structured Headers">

<t>When a receiving implementation parses textual HTTP header fields (e.g., in HTTP/1 or HTTP/2) that are known to be Structured Headers, it is important that care be taken, as there are a number of edge cases that can cause interoperability or even security problems. This section specifies the algorithm for doing so.</t>

<t>Given an ASCII string input_string that represents the chosen header’s field-value, return the parsed header value.</t>

<t><list style="numbers">
  <t>Discard any leading OWS from input_string.</t>
  <t>If the field-value is defined to be a dictionary, let output be the result of Parsing a Dictionary from Textual headers (<xref target="parse-dictionary"/>).</t>
  <t>If the field-value is defined to be a list, let output be the result of Parsing a List from Text (<xref target="parse-list"/>).</t>
  <t>If the field-value is defined to be a parameterised label, let output be the result of Parsing a Parameterised Label from Textual headers (<xref target="parse-parameterised"/>).</t>
  <t>Otherwise, let output be the result of Parsing an Item from Text (<xref target="parse-item"/>).</t>
  <t>Discard any leading OWS from input_string.</t>
  <t>If input_string is not empty, throw an error.</t>
  <t>Otherwise, return output.</t>
</list></t>

<t>When generating input_string for a given header field, parsers MUST combine all instances of it into one comma-separated field-value, as per <xref target="RFC7230"/>, Section 3.2.2; this assures that the header is processed correctly.</t>

<t>Note that in the case of lists and dictionaries, this has the effect of coalescing all of the values for that field. However, for singular items and parameterised labels, it will result in an error being thrown.</t>

<t>Additionally, note that the effect of the parsing algorithms as specified is generally intolerant of syntax errors; if one is encountered, the typical response is to throw an error, thereby discarding the entire header field value. This includes any non-ASCII characters in input_string.</t>

</section>
<section anchor="types" title="Structured Header Data Types">

<t>This section defines the abstract value types that can be composed into Structured Headers, along with the textual HTTP serialisations of them.</t>

<section anchor="dictionary" title="Dictionaries">

<t>Dictionaries are unordered maps of key-value pairs, where the keys are labels (<xref target="label"/>) and the values are items (<xref target="item"/>). There can be between 1 and 1024 members, and keys are required to be unique.</t>

<t>In the textual HTTP serialisation, keys and values are separated by “=” (without whitespace), and key/value pairs are separated by a comma with optional whitespace. Duplicate keys MUST be considered an error.</t>

<figure><artwork type="abnf"><![CDATA[
dictionary = label "=" item *1023( OWS "," OWS label "=" item )
]]></artwork></figure>

<t>For example, a header field whose value is defined as a dictionary could look like:</t>

<figure><artwork><![CDATA[
ExampleDictHeader: foo=1.23, en="Applepie", da=*w4ZibGV0w6ZydGUK
]]></artwork></figure>

<t>Typically, a header field specification will define the semantics of individual keys, as well as whether their presence is required or optional. Recipients MUST ignore keys that are undefined or unknown, unless the header field’s specification specifically disallows them.</t>

<section anchor="parse-dictionary" title="Parsing a Dictionary from Text">

<t>Given an ASCII string input_string, return a mapping of (label, item). input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let dictionary be an empty, unordered mapping.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let this_key be the result of running Parse Label from Text (<xref target="parse-label"/>) with input_string. If an error is encountered, throw it.</t>
      <t>If dictionary already contains this_key, throw an error.</t>
      <t>Consume a “=” from input_string; if none is present, throw an error.</t>
      <t>Let this_value be the result of running Parse Item from Text (<xref target="parse-item"/>) with input_string. If an error is encountered, throw it.</t>
      <t>Add key this_key with value this_value to dictionary.</t>
      <t>If dictionary has more than 1024 members, throw an error.</t>
      <t>Discard any leading OWS from input_string.</t>
      <t>If input_string is empty, return dictionary.</t>
      <t>Consume a COMMA from input_string; if no comma is present, throw an error.</t>
      <t>Discard any leading OWS from input_string.</t>
    </list></t>
  <t>Return dictionary.</t>
</list></t>

</section>
</section>
<section anchor="list" title="Lists">

<t>Lists are arrays of items (<xref target="item"/>) or parameterised labels (<xref target="param"/>), with one to 1024 members.</t>

<t>In the textual HTTP serialisation, each member is separated by a comma and optional whitespace.</t>

<figure><artwork type="abnf"><![CDATA[
list = list_member 0*1023( OWS "," OWS list_member )
list_member = item / parameterised
]]></artwork></figure>

<t>For example, a header field whose value is defined as a list of labels could look like:</t>

<figure><artwork><![CDATA[
ExampleLabelListHeader: foo, bar, baz_45
]]></artwork></figure>

<t>and a header field whose value is defined as a list of parameterised labels could look like:</t>

<figure><artwork><![CDATA[
ExampleParamListHeader: abc/def; g="hi";j, klm/nop
]]></artwork></figure>

<section anchor="parse-list" title="Parsing a List from Text">

<t>Given an ASCII string input_string, return a list of items. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let items be an empty array.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let item be the result of running Parse Item from Text (<xref target="parse-item"/>) with input_string. If an error is encountered, throw it.</t>
      <t>Append item to items.</t>
      <t>If items has more than 1024 members, throw an error.</t>
      <t>Discard any leading OWS from input_string.</t>
      <t>If input_string is empty, return items.</t>
      <t>Consume a COMMA from input_string; if no comma is present, throw an error.</t>
      <t>Discard any leading OWS from input_string.</t>
    </list></t>
  <t>Return items.</t>
</list></t>

</section>
</section>
<section anchor="param" title="Parameterised Labels">

<t>Parameterised Labels are labels (<xref target="label"/>) with up to 256 parameters; each parameter has a label and an optional value that is an item (<xref target="item"/>). Ordering between parameters is not significant, and duplicate parameters MUST be considered an error.</t>

<t>The textual HTTP serialisation uses semicolons (“;”) to delimit the parameters from each other, and equals (“=”) to delimit the parameter name from its value.</t>

<figure><artwork type="abnf"><![CDATA[
parameterised = label *256( OWS ";" OWS label [ "=" item ] )
]]></artwork></figure>

<t>For example,</t>

<figure><artwork><![CDATA[
ExampleParamHeader: abc_123;a=1;b=2; c
]]></artwork></figure>

<section anchor="parse-parameterised" title="Parsing a Parameterised Label from Text">

<t>Given an ASCII string input_string, return a label with an mapping of parameters. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let primary_label be the result of Parsing a Label from Text (<xref target="parse-label"/>) from input_string.</t>
  <t>Let parameters be an empty, unordered mapping.</t>
  <t>In a loop:
  <list style="numbers">
      <t>Discard any leading OWS from input_string.</t>
      <t>If the first character of input_string is not “;”, exit the loop.</t>
      <t>Consume a “;” character from the beginning of input_string.</t>
      <t>Discard any leading OWS from input_string.</t>
      <t>let param_name be the result of Parsing a Label from Text (<xref target="parse-label"/>) from input_string.</t>
      <t>If param_name is already present in parameters, throw an error.</t>
      <t>Let param_value be a null value.</t>
      <t>If the first character of input_string is “=”:
      <list style="numbers">
          <t>Consume the “=” character at the beginning of input_string.</t>
          <t>Let param_value be the result of Parsing an Item from Text (<xref target="parse-item"/>) from input_string.</t>
        </list></t>
      <t>If parameters has more than 255 members, throw an error.</t>
      <t>Add param_name to parameters with the value param_value.</t>
    </list></t>
  <t>Return the tuple (primary_label, parameters).</t>
</list></t>

</section>
</section>
<section anchor="item" title="Items">

<t>An item is can be a integer (<xref target="integer"/>), float (<xref target="float"/>), string (<xref target="string"/>), label (<xref target="label"/>) or binary content (<xref target="binary"/>).</t>

<figure><artwork type="abnf"><![CDATA[
item = integer / float / string / label / binary
]]></artwork></figure>

<section anchor="parse-item" title="Parsing an Item from Text">

<t>Given an ASCII string input_string, return an item. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Discard any leading OWS from input_string.</t>
  <t>If the first character of input_string is a “-“ or a DIGIT, process input_string as a number (<xref target="parse-number"/>) and return the result, throwing any errors encountered.</t>
  <t>If the first character of input_string is a DQUOTE, process input_string as a string (<xref target="parse-string"/>) and return the result, throwing any errors encountered.</t>
  <t>If the first character of input_string is “*”, process input_string as binary content (<xref target="parse-binary"/>) and return the result, throwing any errors encountered.</t>
  <t>If the first character of input_string is an lcalpha, process input_string as a label (<xref target="parse-label"/>) and return the result, throwing any errors encountered.</t>
  <t>Otherwise, throw an error.</t>
</list></t>

</section>
</section>
<section anchor="integer" title="Integers">

<t>Abstractly, integers have a range of −9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 inclusive (i.e., a 64-bit signed integer).</t>

<figure><artwork type="abnf"><![CDATA[
integer   = ["-"] 1*19DIGIT
]]></artwork></figure>

<t>Parsers that encounter an integer outside the range defined above MUST throw an error. Therefore, the value “9223372036854775809” would be invalid. Likewise, values that do not conform to the ABNF above are invalid, and MUST throw an error.</t>

<t>For example, a header whose value is defined as a integer could look like:</t>

<figure><artwork><![CDATA[
ExampleIntegerHeader: 42
]]></artwork></figure>

<section anchor="parse-number" title="Parsing a Number from Text">

<t>NOTE: This algorithm parses both Integers and Floats <xref target="float"/>, and returns the corresponding structure.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not “-“ or a DIGIT, throw an error.</t>
  <t>Let input_number be the result of consuming input_string up to (but not including) the first character that is not in DIGIT, “-“, and “.”.</t>
  <t>If input_number contains “.”, parse it as a floating point number and let output_number be the result.</t>
  <t>Otherwise, parse input_number as an integer and let output_number be the result.</t>
  <t>Return output_number.</t>
</list></t>

</section>
</section>
<section anchor="float" title="Floats">

<t>Abstractly, floats are integers with a fractional part. They have a maximum of fifteen digits available to be used in both of the parts, as reflected in the ABNF below; this allows them to be stored as IEEE 754 double precision numbers (binary64) (<xref target="IEEE754"/>).</t>

<t>The textual HTTP serialisation of floats allows a maximum of fifteen digits between the integer and fractional part, with at least one required on each side, along with an optional “-“ indicating negative numbers.</t>

<figure><artwork type="abnf"><![CDATA[
float    = ["-"] (
             DIGIT "." 1*14DIGIT /
            2DIGIT "." 1*13DIGIT /
            3DIGIT "." 1*12DIGIT /
            4DIGIT "." 1*11DIGIT /
            5DIGIT "." 1*10DIGIT /
            6DIGIT "." 1*9DIGIT /
            7DIGIT "." 1*8DIGIT /
            8DIGIT "." 1*7DIGIT /
            9DIGIT "." 1*6DIGIT /
           10DIGIT "." 1*5DIGIT /
           11DIGIT "." 1*4DIGIT /
           12DIGIT "." 1*3DIGIT /
           13DIGIT "." 1*2DIGIT /
           14DIGIT "." 1DIGIT )
]]></artwork></figure>

<t>Values that do not conform to the ABNF above are invalid, and MUST throw an error.</t>

<t>For example, a header whose value is defined as a float could look like:</t>

<figure><artwork><![CDATA[
ExampleFloatHeader: 4.5
]]></artwork></figure>

<t>See <xref target="parse-number"/> for the parsing algorithm for floats.</t>

</section>
<section anchor="string" title="Strings">

<t>Abstractly, strings are ASCII strings <xref target="RFC0020"/>, excluding control characters (i.e., the range 0x20 to 0x7E). Note that this excludes tabs, newlines and carriage returns. They may be at most 1024 characters long.</t>

<t>The textual HTTP serialisation of strings uses a backslash (“") to escape double quotes and backslashes in strings.</t>

<figure><artwork type="abnf"><![CDATA[
string    = DQUOTE 0*1024(char) DQUOTE
char      = unescaped / escape ( DQUOTE / "\" )
unescaped = %x20-21 / %x23-5B / %x5D-7E
escape    = "\"
]]></artwork></figure>

<t>For example, a header whose value is defined as a string could look like:</t>

<figure><artwork><![CDATA[
ExampleStringHeader: "hello world"
]]></artwork></figure>

<t>Note that strings only use DQUOTE as a delimiter; single quotes do not delimit strings. Furthermore, only DQUOTE and “" can be escaped; other sequences MUST generate an error.</t>

<t>Unicode is not directly supported in Structured Headers, because it causes a number of interoperability issues, and – with few exceptions – header values do not require it.</t>

<t>When it is necessary for a field value to convey non-ASCII string content, binary content (<xref target="binary"/>) SHOULD be specified, along with a character encoding (most likely, UTF-8).</t>

<section anchor="parse-string" title="Parsing a String from Text">

<t>Given an ASCII string input_string, return an unquoted string. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>Let output_string be an empty string.</t>
  <t>If the first character of input_string is not DQUOTE, throw an error.</t>
  <t>Discard the first character of input_string.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let char be the result of removing the first character of input_string.</t>
      <t>If char is a backslash (“\”):
      <list style="numbers">
          <t>If input_string is now empty, throw an error.</t>
          <t>Else:
          <list style="numbers">
              <t>Let next_char be the result of removing the first character of input_string.</t>
              <t>If next_char is not DQUOTE or “\”, throw an error.</t>
              <t>Append next_char to output_string.</t>
            </list></t>
        </list></t>
      <t>Else, if char is DQUOTE, return output_string.</t>
      <t>Else, append char to output_string.</t>
      <t>If output_string contains more than 1024 characters, throw an error.</t>
    </list></t>
  <t>Otherwise, throw an error.</t>
</list></t>

</section>
</section>
<section anchor="label" title="Labels">

<t>Labels are short (up to 256 characters) textual identifiers; their abstract model is identical to their expression in the textual HTTP serialisation.</t>

<figure><artwork type="abnf"><![CDATA[
label = lcalpha *255( lcalpha / DIGIT / "_" / "-"/ "*" / "/" )
lcalpha = %x61-7A ; a-z
]]></artwork></figure>

<t>Note that labels can only contain lowercase letters.</t>

<t>For example, a header whose value is defined as a label could look like:</t>

<figure><artwork><![CDATA[
ExampleLabelHeader: foo/bar
]]></artwork></figure>

<section anchor="parse-label" title="Parsing a Label from Text">

<t>Given an ASCII string input_string, return a label. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not lcalpha, throw an error.</t>
  <t>Let output_string be an empty string.</t>
  <t>While input_string is not empty:
  <list style="numbers">
      <t>Let char be the result of removing the first character of input_string.</t>
      <t>If char is not one of lcalpha, DIGIT, “_”, “-“, “*” or “/”:
      <list style="numbers">
          <t>Prepend char to input_string.</t>
          <t>Return output_string.</t>
        </list></t>
      <t>Append char to output_string.</t>
      <t>If output_string contains more than 256 characters, throw an error.</t>
    </list></t>
  <t>Return output_string.</t>
</list></t>

</section>
</section>
<section anchor="binary" title="Binary Content">

<t>Arbitrary binary content up to 16K in size can be conveyed in Structured Headers.</t>

<t>The textual HTTP serialisation indicates their presence by a leading “*”, with the data encoded using Base 64 Encoding <xref target="RFC4648"/>, Section 4.</t>

<t>Parsers MUST consider encoded data that is padded an error, as “=” might be confused with the use of dictionaries). See <xref target="RFC4648"/>, Section 3.2.</t>

<t>Likewise, parsers MUST consider encoded data that has non-zero pad bits an error. See <xref target="RFC4648"/>, Section 3.5.</t>

<t>This specification does not relax the requirements in <xref target="RFC4648"/>, Section 3.1 and 3.3; therefore, parsers MUST consider characters outside the base64 alphabet and line feeds in encoded data as errors.</t>

<figure><artwork type="abnf"><![CDATA[
binary = "*" 0*21846(base64) "*"
base64 = ALPHA / DIGIT / "+" / "/"
]]></artwork></figure>

<t>For example, a header whose value is defined as binary content could look like:</t>

<figure><artwork><![CDATA[
ExampleBinaryHeader: *cHJldGVuZCB0aGlzIGlzIGJpbmFyeSBjb250ZW50Lg*
]]></artwork></figure>

<section anchor="parse-binary" title="Parsing Binary Content from Text">

<t>Given an ASCII string input_string, return binary content. input_string is modified to remove the parsed value.</t>

<t><list style="numbers">
  <t>If the first character of input_string is not “*”, throw an error.</t>
  <t>Discard the first character of input_string.</t>
  <t>Let b64_content be the result of removing content of input_string up to but not including the first instance of the character “<spanx style="emph">”. If there is not a “</spanx>” character before the end of input_string, throw an error.</t>
  <t>Consume the “*” character at the beginning of input_string.</t>
  <t>If b64_content is has more than 21846 characters, throw an error.</t>
  <t>Let binary_content be the result of Base 64 Decoding <xref target="RFC4648"/> b64_content, synthesising padding if necessary. If an error is encountered, throw it (note the requirements about recipient behaviour in <xref target="binary"/>).</t>
  <t>Return binary_content.</t>
</list></t>

</section>
</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This draft has no actions for IANA.</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t>TBD</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





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



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



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



<reference  anchor="RFC0020" target='https://www.rfc-editor.org/info/rfc20'>
<front>
<title>ASCII format for network interchange</title>
<author initials='V.G.' surname='Cerf' fullname='V.G. Cerf'><organization /></author>
<date year='1969' month='October' />
</front>
<seriesInfo name='STD' value='80'/>
<seriesInfo name='RFC' value='20'/>
<seriesInfo name='DOI' value='10.17487/RFC0020'/>
</reference>



<reference  anchor="RFC4648" target='https://www.rfc-editor.org/info/rfc4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author initials='S.' surname='Josefsson' fullname='S. Josefsson'><organization /></author>
<date year='2006' month='October' />
<abstract><t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4648'/>
<seriesInfo name='DOI' value='10.17487/RFC4648'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="IEEE754" target="http://grouper.ieee.org/groups/754/">
  <front>
    <title>IEEE Standard for Floating-Point Arithmetic</title>
    <author >
      <organization>IEEE</organization>
    </author>
    <date year="2008"/>
  </front>
</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="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="RFC3986" target='https://www.rfc-editor.org/info/rfc3986'>
<front>
<title>Uniform Resource Identifier (URI): Generic Syntax</title>
<author initials='T.' surname='Berners-Lee' fullname='T. Berners-Lee'><organization /></author>
<author initials='R.' surname='Fielding' fullname='R. Fielding'><organization /></author>
<author initials='L.' surname='Masinter' fullname='L. Masinter'><organization /></author>
<date year='2005' month='January' />
<abstract><t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='66'/>
<seriesInfo name='RFC' value='3986'/>
<seriesInfo name='DOI' value='10.17487/RFC3986'/>
</reference>




    </references>


<section anchor="changes" title="Changes">

<section anchor="since-draft-ietf-httpbis-header-structure-02" title="Since draft-ietf-httpbis-header-structure-02">

<t><list style="symbols">
  <t>Split Numbers into Integers and Floats.</t>
  <t>Define number parsing.</t>
  <t>Tighten up binary parsing and give it an explicit end delimiter.</t>
  <t>Clarify that mappings are unordered.</t>
  <t>Allow zero-length strings.</t>
  <t>Improve string parsing algorithm.</t>
  <t>Improve limits in algorithms.</t>
  <t>Require parsers to combine header fields before processing.</t>
  <t>Throw an error on trailing garbage.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-01" title="Since draft-ietf-httpbis-header-structure-01">

<t><list style="symbols">
  <t>Replaced with draft-nottingham-structured-headers.</t>
</list></t>

</section>
<section anchor="since-draft-ietf-httpbis-header-structure-00" title="Since draft-ietf-httpbis-header-structure-00">

<t><list style="symbols">
  <t>Added signed 64bit integer type.</t>
  <t>Drop UTF8, and settle on BCP137 ::EmbeddedUnicodeChar for h1-unicode-string.</t>
  <t>Change h1_blob delimiter to “:” since “’” is valid t_char</t>
</list></t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
4R+9IaV37cyB4CMxi2Aw5r6qPduEyOXOVtEGHtJEkZWx0rN+5GaAuh5LRX6/
Yj7VhZ267Jec5P3MZ0looPFbU+ob2Pm8YidLeN0UD/b377XEuxwnOdsBWuuM
Vub5bLqpXAsdcLyvzo7yAk/1t2oK3XaG2hY7eEUOw5dntCzPOxO7E5a1b9qe
tZMt4o8UAIzxYgU+pA/0SDYPnvEneshY4hpMTDaHkjjCqkcahZ/QYUUF8UTL
aUlBTybt2Zl6MnpPBmzySde20mKxLPkpEMzc+Q6Q/caTuweVBTCp01J0lCJl
aHJUUW+pnVLOUqL5u83OOuePrBciqMzLpeTqXSe1fqL3CFK5Lu4+EitBYhJL
cfpmEodPgp6d1mbq1kWXaSwF+Jtp3H8SG2MV+TqaT/V9jCyVb8UYfCuJB7WD
vlUEE0ixJUiAKoIXACxy1IF53LJGaao/IcCkOp7Qedn//Nd/P28PBnvtvcNB
e3fvoH20P2wfHu63j3aPULU2/XjIBzgZlnVshV1DtVwHQ9gSdon5AAXnrKOL
wIoCiPkV9Ocvqr/Tf076w0ByLSeQXL5h+eDUH+EZpxQUG1lGGYiPEAXI1V5h
E59vYC1H28Hy1nNYGywNVgYLg3Ud7T5vSbUeFc9S+QvYMIjZmftyWCE1pbbi
B68D8cmYUVi/KoRwqSWNwS54E2Wbch735RosJ+5NK4hIWI96OGjyoN8yLq0D
tQCU570F2DjmE7uqJkNKVOjyQil6uEK6+YdlfGKg2o7U20LDlM8TCYfLekCG
6ie6jSvwu8pZ8T64qyDwmvvhk5OzdkTOseXWqMhpqrLqeLuRQBtCclNLD9An
tdrdlgXsGjFlghoayNk7nhbTHo/lDqWa0x1K6UH1+2V9QuOiCHcdwJBh3Xm1
W8/3uDH3S0+n1kw8Grvtz3jb69Az5h/tncpJ6VTBIrENx+JAJpcjLy1EzfTn
cFbMqHowHOcYfQfhBMNS/UmHEd1acC5uSNGdc0Ke86ET6H1k/Nze4xEVpYI/
W31QnfXIiFmepKxtdLv1cH8I6l7gjFjFS7fTZEsgomYrdDDcRtCXG7XsVD0Q
1+PKhDlMwX2LthkIXIG7dSs8lCwx3jczGrN5sXNMC3NSWgDxs35hy8mKoFo5
dZyxmXDxnqzXRXN2DR0w3xLHX/4jRUDpRpQf8rdercmg1mSvqclercmgqcmw
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

-->

</rfc>

