<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.39 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-lenders-dns-cbor-18" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.34.0 -->
  <front>
    <title abbrev="dns+cbor">A Concise Binary Object Representation (CBOR) of DNS Messages</title>
    <seriesInfo name="Internet-Draft" value="draft-lenders-dns-cbor-18"/>
    <author fullname="Martine Sophie Lenders">
      <organization abbrev="TU Dresden">TUD Dresden University of Technology</organization>
      <address>
        <postal>
          <street>Helmholtzstr. 10</street>
          <city>Dresden</city>
          <code>D-01069</code>
          <country>Germany</country>
        </postal>
        <email>martine.lenders@tu-dresden.de</email>
      </address>
    </author>
    <author initials="C." surname="Bormann" fullname="Carsten Bormann">
      <organization>Universität Bremen TZI</organization>
      <address>
        <postal>
          <street>Postfach 330440</street>
          <city>Bremen</city>
          <code>D-28359</code>
          <country>Germany</country>
        </postal>
        <phone>+49-421-218-63921</phone>
        <email>cabo@tzi.org</email>
      </address>
    </author>
    <author initials="M." surname="Gütschow" fullname="Mikolai Gütschow">
      <organization abbrev="TU Dresden">TUD Dresden University of Technology</organization>
      <address>
        <postal>
          <street>Helmholtzstr. 10</street>
          <city>Dresden</city>
          <code>D-01069</code>
          <country>Germany</country>
        </postal>
        <email>mikolai.guetschow@tu-dresden.de</email>
      </address>
    </author>
    <author fullname="Thomas C. Schmidt">
      <organization>HAW Hamburg</organization>
      <address>
        <email>t.schmidt@haw-hamburg.de</email>
      </address>
    </author>
    <author initials="M." surname="Wählisch" fullname="Matthias Wählisch">
      <organization abbrev="TU Dresden &amp; Barkhausen Institut">TUD Dresden University of Technology &amp; Barkhausen Institut</organization>
      <address>
        <postal>
          <street>Helmholtzstr. 10</street>
          <city>Dresden</city>
          <code>D-01069</code>
          <country>Germany</country>
        </postal>
        <email>m.waehlisch@tu-dresden.de</email>
      </address>
    </author>
    <date year="2026" month="July" day="27"/>
    <area>Applications</area>
    <workgroup>CBOR</workgroup>
    <keyword>Internet-Draft</keyword>
    <keyword>CBOR</keyword>
    <keyword>DNS</keyword>
    <abstract>
      <?line 95?>

<t>This document specifies a compact data format of DNS messages using
the Concise Binary Object Representation <xref target="RFC8949"/>.
The primary purpose is to keep DNS messages small in constrained networks.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://cbor-wg.github.io/cbor-dns/draft-lenders-dns-cbor.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-lenders-dns-cbor/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        CBOR Working Group mailing list (<eref target="mailto:cbor@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/cbor/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/cbor/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/cbor-wg/cbor-dns"/>.</t>
    </note>
  </front>
  <middle>
    <?line 102?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>In constrained networks <xref target="RFC7228"/>, the link layer may restrict the payload sizes of frames to
only a few hundreds bytes.  Encrypted DNS resolution, such as DNS over HTTPS (DoH) <xref target="RFC8484"/> or
DNS over CoAP (DoC) <xref target="RFC9953"/>, may lead to DNS message sizes that exceed this limit, even when
implementing header compression such as 6LoWPAN IPHC <xref target="RFC6282"/> or SCHC <xref target="RFC8724"/>,
<xref target="RFC8824"/>.</t>
      <t>Although adoption layers such as 6LoWPAN <xref target="RFC4944"/> or SCHC <xref target="RFC8724"/> offer fragmentation to
comply with small MTUs, fragmentation should be avoided in constrained networks.
Fragmentation combined with high packet loss multiplies the likelihood of loss.
Hence, a compression format that reduces fragmentation of DNS messages is beneficial.</t>
      <t>This document specifies a compact data format for DNS messages using Concise Binary Object Representation (CBOR) <xref target="RFC8949"/> encoding. Additionally,  unnecessary or redundant information are stripped off DNS messages.  To use the outcome of this specification in DoH and DoC,
this document also specifies a Media Type header value for DoH and a Content-Format option value for DoC.</t>
      <t>Note, that there is another format that expresses DNS messages in CBOR, C-DNS <xref target="RFC8618"/>.
C-DNS is primarily a file format to minimize traces of multiple DNS messages and uses the fact that there are multiple messages to do its compression.
Common values such as names or addresses are collected in separate tables which are referenced from the messages, comparable to Packed CBOR <xref target="I-D.ietf-cbor-packed"/>.
However, this may add overhead for individual DNS messages.</t>
      <t>The format described in this document is a transfer format that aims to provide conciseness and compression for individual DNS messages to be sent over the network.
This is achieved applying the following objectives:</t>
      <t>Conciseness:</t>
      <ul spacing="normal">
        <li>
          <t>Encoding DNS messages in CBOR and</t>
        </li>
        <li>
          <t>Omitting (redundant) fields in DNS queries and responses.</t>
        </li>
      </ul>
      <t>Compression:</t>
      <ul spacing="normal">
        <li>
          <t>Providing easy to implement name compression that allows for on-the-fly construction of DNS queries and responses and</t>
        </li>
        <li>
          <t>Providing optional address and value compression in DNS responses using Packed CBOR <xref target="I-D.ietf-cbor-packed"/>.</t>
        </li>
      </ul>
    </section>
    <section anchor="terminology-and-conventions">
      <name>Terminology and Conventions</name>
      <t>CBOR types (unsigned integer, byte string, text string, arrays, etc.) are used as defined in
<xref target="RFC8949"/>.</t>
      <t>The terms "DNS server", "DNS client", and "(DNS) resolver" are used as defined in <xref target="BCP219"/>.</t>
      <t>A DNS query is a message that queries DNS information from an upstream DNS resolver.
The reply to that is a DNS response.</t>
      <t>The DNS message format specified in <xref target="RFC1035"/> for DNS over UDP we call "classic DNS format" throughout this document or refer to it by its media type "application/dns-message" as specified in <xref target="RFC8484"/>.</t>
      <t>The term "constrained networks" is used as defined in <xref target="RFC7228"/>.</t>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
      <?line -18?>

<t>To define the representation of binary objects we use the Concise Data Definition Language (CDDL) <xref target="RFC8610"/>.
For examples, we use the CBOR Extended Diagnostic Notation <xref target="I-D.ietf-cbor-edn-literals"/> with the <tt>e''</tt> application extension for external references to values <xref target="I-D.ietf-cbor-edn-e-ref"/>.</t>
    </section>
    <section anchor="cbor-representations-applicationdnscbor">
      <name>CBOR Representations (application/dns+cbor)</name>
      <t>DNS messages in "application/dns+cbor" are represented as CBOR arrays to minimize overhead compared
to, e.g., maps.
All CBOR items used in this specification are of definite length.
CBOR arrays that do not follow the length definitions of this or of follow-up specifications, <bcp14>MUST</bcp14> be silently ignored.
CBOR arrays that exceed the message size provided by the transport, <bcp14>MUST</bcp14> be silently ignored.
It is assumed that DNS query and DNS response are distinguished message types and that the query can be mapped to the response by the transfer protocol of choice.</t>
      <figure anchor="fig_dns-msg">
        <name>This document defines both DNS Queries and Responses in CDDL</name>
        <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
dns-message = dns-query / dns-response
]]></sourcecode>
      </figure>
      <t>If, for any reason, a DNS message cannot be represented in the CBOR format specified in this document, or if unreasonable overhead is introduced, a fallback to another DNS message format, e.g., the classic DNS format specified in <xref target="RFC1035"/>, <bcp14>MUST</bcp14> always be possible.
The DNS transport <bcp14>MUST</bcp14> support a mechanism to distinguish different formats, e.g., the Media Type header with DoH.</t>
      <section anchor="sec_domain-names">
        <name>Domain Name Representation</name>
        <t>Domain names are represented by a sequence of one or more (Unicode) text strings, using one string per label.
For instance, "example.org" would be represented as <tt>"example","org"</tt> in CBOR diagnostic notation.
The root domain "." is represented as an empty string <tt>""</tt>.
The absence of any label means the name is elided.
For the purpose of this document, domain names remain case-insensitive as specified in <xref target="RFC1035"/>.</t>
        <t>The representation of a domain name is defined in <xref target="fig_domain-name"/>.
A label may either be encoded in ASCII-compatible encoding (ACE) <xref target="RFC5891"/> embedded within UTF-8 encoding of the text strings or plain UTF-8.
It is <bcp14>RECOMMENDED</bcp14> to use the encoding with the shorter length in bytes, otherwise message sizes may
increase.
A decoder identifies the ACE encoding by identifying the label as a valid A-label (see <xref target="RFC5891"/>) and <bcp14>MUST</bcp14> assume the label to be encoded in UTF-8 otherwise.</t>
        <t>This sequence of text strings is supposed to be embedded into a surrounding array, usually the query
or resource record.</t>
        <t>Name compression is implemented using an extension to Packed CBOR, see <xref target="sec_name-compression"/>.
For readers unfamiliar with Packed CBOR this name compression can be abstracted to a name
compression similar to that described in <xref section="4.1.4" sectionFormat="of" target="RFC1035"/>.
However, instead of using the byte index as reference within the message, text strings are counted,
starting at 0, depth-first within the message.
That number is used as index for the reference.
Since names are the only text strings in a CBOR-based DNS message, the end of a name can be identified when the decoder cursor
does not point to a text string or reference to another text string anymore.
For the reference itself, either simple values or tag 6 are used (see <xref section="2.2" sectionFormat="of" target="I-D.ietf-cbor-packed"/>).</t>
        <figure anchor="fig_domain-name">
          <name>Domain Name Definition</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
domain-name = ( *label )
label = tstr
]]></sourcecode>
        </figure>
      </section>
      <section anchor="sec_rr">
        <name>DNS Resource Records</name>
        <t>This document specifies the representation of both standard DNS resource records (RRs, see <xref target="RFC1035"/>)
and EDNS option pseudo-RRs (see <xref target="RFC6891"/>.
If for any reason, a resource record cannot be represented in the given formats, they can be
represented in their binary wire-format form as a byte string.</t>
        <t>Further dedicated representations of standard resource records, e.g., for TSIG <xref target="RFC8945"/>, can be defined in follow-up specifications using the <tt>$$structured-ts-rd</tt>
extension point (see <xref target="fig_dns-standard-rr"/>) and are out of scope of this document.</t>
        <t>The representation of a DNS resource records is defined in <xref target="fig_dns-rr"/>.</t>
        <figure anchor="fig_dns-rr">
          <name>DNS Resource Record Definition</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
$$dns-rr = rr / #6.141(opt-rr) / bstr
]]></sourcecode>
        </figure>
        <section anchor="standard-rrs">
          <name>Standard RRs</name>
          <t>Standard DNS resource records are encoded as CBOR arrays containing 2 or more entries in the following order:</t>
          <ol spacing="normal" type="1"><li>
              <t>An optional name (as domain name, see <xref target="sec_domain-names"/>),</t>
            </li>
            <li>
              <t>A TTL (as unsigned integer),</t>
            </li>
            <li>
              <t>An optional record type (as unsigned integer),</t>
            </li>
            <li>
              <t>An optional record class (as unsigned integer), and lastly</t>
            </li>
            <li>
              <t>A record data entry (as byte string, domain name, or array for dedicated record data representation) or
a boolean (true) that indicates that the resource record is actually a resource record set with
an array of one or more record data entries following. In the latter case, individual domain
names need to be put into their own array.</t>
            </li>
          </ol>
          <t>If the first item of the resource record is a text string, it is the first label of a domain name (see <xref target="sec_domain-names"/>).
If the name is elided, the name is derived from the question section of the message.
For responses, the question section is either taken from the query (see <xref target="sec_queries"/>) or provided with the response see <xref target="sec_responses"/>.
The query may be derived from the context of the transfer protocol.</t>
          <t>If the record type is elided, the record type from the question is assumed.
If record class is elided, the record class from the question is assumed.
When a record class is required to be expressed, the record type <bcp14>MUST</bcp14> also be provided.</t>
          <t>The byte string format of the record data as a byte string follows the classic DNS format as specified in <xref section="3.3" sectionFormat="of" target="RFC1035"/> (or other specifications of the respective record type).
Note that the CBOR format does not include the RDLENGTH field from the classic format as this value is encoded in the length field of the CBOR header of the byte string.
A parser of the format specified in this document <bcp14>MUST</bcp14> ensure that encoded lengths within this binary record do not overflow the bounds of the byte string or fail otherwise.</t>
          <t>If the record data represents a domain name (e.g., for CNAME or PTR records), the record data <bcp14>MAY</bcp14> be represented as domain name as specified in <xref target="sec_domain-names"/>.
This way of representing the record data means that name compression (see <xref target="sec_name-compression"/>) can also be used on it.</t>
          <t>Depending on the record type, the record data may also be expressed as an array.
Some initial array types are specified below.
Future specifications can extend the definition for <tt>$$structured-ts-rd</tt> in <xref target="fig_dns-standard-rr"/>.
Extensions to that in this document mainly serve to expose names to name compression (see <xref target="sec_name-compression"/>).
There is an argument to be made for CBOR-structured formats of other record data representations (e.g. DNSKEY or RRSIG), but structuring such records as an array usually adds more overhead than just transferring the byte representation.
As such, structured record data that do not contain names are to be represented as a byte string in this specification.</t>
          <t>Multiple resource records of the same type, class, and TTL can be summarized to a resource record set.
A decoder can be notified about this, by including the boolean true value before an array of multiple record data entries of the same type.
Note, that this adds more overhead to the message and should only really be considered, when there are
more than one resource records of the same type, class, and TTL in the message.</t>
          <figure anchor="fig_dns-standard-rr">
            <name>DNS Standard Resource Record Definition</name>
            <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
max-uint8 = 0..255
max-uint16 = 0..65535
max-uint32 = 0..4294967295
ttl = max-uint32
ipv4-addr = bstr .size 4
ipv6-addr = bstr .size 16
$ip-addr = ipv4-addr / ipv6-addr

rr = [
  ? domain-name,
  ttl: ttl,
  type-spec-rdata,
]
type-spec-rdata = (
  ? type-spec,
  rdata: bstr // ( $ip-addr ) // ( domain-name ) // ( rdata-set ),
)
rdata-set = ((
  is-rrset: true,
  rdata-set: [ +bstr ]
) // (
  is-rrset: true,
  rdata-set: [ +[ domain-name ] ],
))
type-spec-rdata //= ( $$structured-ts-rd )
type-spec = (
  record-type: max-uint16,
  ? record-class: max-uint16,
)
]]></sourcecode>
          </figure>
          <section anchor="soa-record-data">
            <name>SOA Record Data</name>
            <t>The record data of RRs with <tt>record-type</tt> = 6 (SOA) <bcp14>MAY</bcp14> be expressed as an array with at least 7 entries representing the 7 parts of the SOA resource record defined in <xref target="RFC1035"/> in the following order:</t>
            <ul spacing="normal">
              <li>
                <t>MNAME as a domain name (see <xref target="sec_domain-names"/>),</t>
              </li>
              <li>
                <t>SERIAL as an unsigned integer,</t>
              </li>
              <li>
                <t>REFRESH as an unsigned integer,</t>
              </li>
              <li>
                <t>RETRY as an unsigned integer,</t>
              </li>
              <li>
                <t>EXPIRE as an unsigned integer,</t>
              </li>
              <li>
                <t>MINIMUM as an unsigned integer, and</t>
              </li>
              <li>
                <t>RNAME as a domain name (see <xref target="sec_domain-names"/>).</t>
              </li>
            </ul>
            <t>MNAME and RNAME are put to the beginning and end of the array, respectively, to keep their labels apart.</t>
            <t>The definition for SOA record data can be seen in <xref target="fig_dns-rdata-soa"/>.</t>
            <figure anchor="fig_dns-rdata-soa">
              <name>SOA Resource Record Data Definition</name>
              <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
$$structured-ts-rd //= (
  6,    ; record-type = SOA
  ? 1,  ; record-class = IN
  ( soa // ( is-rrset: true, rdata-set: [ +soa ] ) ),
)

soa = [
  domain-name,  ; mname
  serial: max-uint32,
  refresh: max-uint32,
  retry: max-uint32,
  expire: max-uint32,
  minimum: max-uint32,
  domain-name,  ; rname
]
]]></sourcecode>
            </figure>
          </section>
          <section anchor="mx-record-data">
            <name>MX Record Data</name>
            <t>The record data of RRs with <tt>record-type</tt> = 15 (MX) <bcp14>MAY</bcp14> be expressed as an array with at least 2 entries representing the 2 parts of the MX resource record defined in <xref target="RFC1035"/> in the following order:</t>
            <ul spacing="normal">
              <li>
                <t>PREFERENCE as an unsigned integer and</t>
              </li>
              <li>
                <t>EXCHANGE as a domain name (see <xref target="sec_domain-names"/>).</t>
              </li>
            </ul>
            <t>The definition for MX record data can be seen in <xref target="fig_dns-rdata-mx"/>.</t>
            <figure anchor="fig_dns-rdata-mx">
              <name>MX Resource Record Data Definition</name>
              <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
$$structured-ts-rd //= (
  15,   ; record-type = MX
  ? 1,  ; record-class = IN
  ( mx // ( is-rrset: true, rdata-set: [ +mx ] ) ),
)

mx = [
  preference: max-uint16,
  domain-name,  ; exchange
]
]]></sourcecode>
            </figure>
          </section>
          <section anchor="srv-record-data">
            <name>SRV Record Data</name>
            <t>The record data of RRs with <tt>record-type</tt> = 33 (SRV) <bcp14>MAY</bcp14> be expressed as an array with at least 3 entries representing the parts of the SRV resource record defined in <xref target="RFC2782"/> in the following order:</t>
            <ul spacing="normal">
              <li>
                <t>Priority as an unsigned integer,</t>
              </li>
              <li>
                <t>an optional Weight as an unsigned integer,</t>
              </li>
              <li>
                <t>Port as an unsigned integer,</t>
              </li>
              <li>
                <t>Target as a domain name (see <xref target="sec_domain-names"/>).</t>
              </li>
            </ul>
            <t>If the weight is present or not can be determined by the number of unsigned integers before Target.
2 unsigned integers before the Target mean the weight was elided and defaults to 0.
3 unsigned integers before the Target mean the weight is in the second position of the record data array.
The default of 0 was picked, as this is the value domain administrators should pick when there is no server selection to do <xref target="RFC2782"/>.</t>
            <t>The definition for SRV record data can be seen in <xref target="fig_dns-rdata-srv"/>.</t>
            <figure anchor="fig_dns-rdata-srv">
              <name>SRV Resource Record Data Definition</name>
              <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
$$structured-ts-rd //= (
  33,   ; record-type = SRV
  ? 1,  ; record-class = IN
  ( srv // ( is-rrset: true, rdata-set: [ +srv ] ) ),
)

srv = [
  priority: max-uint16,
  ? weight: max-uint16 .default 0,
  port: max-uint16,
  domain-name,  ; target
]
]]></sourcecode>
            </figure>
          </section>
          <section anchor="svcb-and-https-record-data">
            <name>SVCB and HTTPS Record Data</name>
            <t>The record data of RRs with <tt>record-type</tt> = 64 (SVCB) and <tt>record-type</tt> = 65 (HTTPS) <bcp14>MAY</bcp14> be expressed as an array with at least 3 entries representing the 3 parts of the SVCB/HTTPS resource record defined in <xref target="RFC9460"/> in the following order:</t>
            <ul spacing="normal">
              <li>
                <t>An optional SvcPriority as an unsigned integer,</t>
              </li>
              <li>
                <t>An optional TargetName as a domain name (see <xref target="sec_domain-names"/>), and</t>
              </li>
              <li>
                <t>SvcParams as an array of alternating pairs of SvcParamKey (as unsigned integer) and SvcParamValue
(as byte string).
The type of SvcParamValue may be extended in future specifications.</t>
              </li>
            </ul>
            <t>It can be determined if the SvcPriority is present by checking if the record data array starts with an unsigned integer or not.
If the array does not start with an unsigned integer, the SvcPriority is elided and defaults to 0, i.e., the record is in AliasMode (see <xref section="2.4.2" sectionFormat="of" target="RFC9460"/>).
If the array starts with an unsigned integer, it is the SvcPriority.</t>
            <t>It can be determined if the TargetName is present by checking if the record data array has a domain name after the SvcPriority, i.e., if the SvcPriority is elided the array would start with a domain name.
If there is no domain name after the SvcPriority, the TargetName is elided and defaults to the sequence of text strings <tt>""</tt> (i.e., the root domain "." in the common name representation defined in <xref section="2.3.1" sectionFormat="of" target="RFC1035"/>, see <xref target="sec_domain-names"/> and <xref section="2.5" sectionFormat="of" target="RFC9460"/>).
If there is a domain name after the SvcPriority, the TargetName is not elided and in the domain name form specified in <xref target="sec_domain-names"/>.</t>
            <t>The definition for SVCB and HTTPS record data can be seen in <xref target="fig_dns-rdata-svcb"/>.</t>
            <figure anchor="fig_dns-rdata-svcb">
              <name>SVCB and HTTPS Resource Record Data Definition</name>
              <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
$$structured-ts-rd //= (
  64 / 65,  ; record-type = SVCB or HTTPS
  ? 1,      ; record-class = IN
  ( svcb // ( is-rrset: true, rdata-set: [ +svcb ] ) ),
)

svcb = [
  ? svc-priority: max-uint16 .default 0,
  ? domain-name,  ; target name
  svc-params: [ *svc-param-pair ],
]

svc-param-pair = (
  svc-param-key: max-uint16,
  svc-param-value: $$svc-param-value,
)
$$svc-param-value = bstr / $ip-addr
]]></sourcecode>
            </figure>
            <t>The SvcParams are provided as an array rather than a map, as their order needs to be preserved <xref target="RFC9460"/> which can not be guaranteed for maps.</t>
          </section>
        </section>
        <section anchor="sec_edns">
          <name>EDNS OPT Pseudo-RRs</name>
          <t>EDNS OPT Pseudo-RRs are represented as a CBOR array.
To distinguish them from normal standard RRs, they are marked with tag TBD141.</t>
          <t>Name and record type can be elided as they are always "." and OPT (41), respectively <xref target="RFC6891"/>.</t>
          <t>The UDP payload size may be the first element as an unsigned integer in the array.
It <bcp14>MUST</bcp14> be elided if its value is the default value of 512, the maximum allowable size for unextended DNS over UDP (see Sections <xref target="RFC1035" section="2.3.4" sectionFormat="bare"/> and <xref target="RFC1035" section="4.2.1" sectionFormat="bare"/> of <xref target="RFC1035"/>).</t>
          <t>The next element is an array of the options as alternating pairs of option code (as unsigned integer) and option data (as byte string).
The type of the option data may be extended in future specifications.
As per <xref section="6.1.2" sectionFormat="of" target="RFC6891"/>, the order of options is not defined in this specification, but the considerations to order provided in <xref section="6.1.2" sectionFormat="of" target="RFC6891"/> also apply here.</t>
          <t>After that, up to three unsigned integers are following.
The first being the extended flags as unsigned integer (implied to be 0 if elided),
the second the extended RCODE as an unsigned integer (implied to be 0 if elided), and
the third the EDNS version (implied to be 0 if elided).
They are dependent on each of their previous elements.
If the EDNS version is not elided, both extended flags and extended RCODE <bcp14>MUST</bcp14> not be elided.
If the RCODE is not elided the extended flags <bcp14>MUST</bcp14> not be elided.</t>
          <t>Note that future EDNS versions may require a different format than the one described above.</t>
          <figure anchor="fig_dns-opt-rr">
            <name>DNS OPT Resource Record Definition</name>
            <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
opt-rr = [
  ? udp-payload-size: max-uint16 .default 512,
  options: [* opt-pair ],
  ? opt-rcode-v-flags,
]
opt-pair = (
  ocode: max-uint16,
  odata: $$odata,
)
opt-rcode-v-flags = (
  flags: max-uint16 .default 0,
  ? opt-rcode-v,
)
rcode = 0..4095
opt-rcode-v = (
  rcode: rcode .default 0,
  ? version: max-uint8 .default 0,
)
$$odata = bstr
]]></sourcecode>
          </figure>
        </section>
      </section>
      <section anchor="sec_queries">
        <name>DNS Queries</name>
        <t>DNS queries are encoded as CBOR arrays containing up to 6 entries in the following order:</t>
        <ol spacing="normal" type="1"><li>
            <t>An optional boolean field,</t>
          </li>
          <li>
            <t>An optional flag field (as unsigned integer),</t>
          </li>
          <li>
            <t>The question section (as array),</t>
          </li>
          <li>
            <t>An optional answer section (as array),</t>
          </li>
          <li>
            <t>An optional authority section (as array), and</t>
          </li>
          <li>
            <t>An optional additional section (as array)</t>
          </li>
        </ol>
        <t>If the first item is a boolean and when true, it tells the responding resolver that it <bcp14>MUST</bcp14> include the question section in its response. If that boolean is not present, it is assumed to be false.</t>
        <t>If the first item of the query is an array, it is the question section, if it is an unsigned integer, it is as flag field and maps to the header flags in <xref target="RFC1035"/> and the "DNS Header Flags" IANA registry including the QR flag and the OPCODE.</t>
        <t>If the flags are elided, the value 0 is assumed.</t>
        <t>This specification assumes that the DNS messages are sent over a transfer protocol that can map the queries to their responses, e.g., DNS over HTTPS <xref target="RFC8484"/> or DNS over CoAP <xref target="RFC9953"/>.
As a consequence, the DNS transaction ID is always elided and the value 0 is assumed.</t>
        <t>A question record within the question section is encoded as a CBOR array containing the following entries:</t>
        <ol spacing="normal" type="1"><li>
            <t>The queried name (as domain name, see <xref target="sec_domain-names"/>) which <bcp14>MUST</bcp14> not be elided,</t>
          </li>
          <li>
            <t>An optional record type (as unsigned integer), and</t>
          </li>
          <li>
            <t>An optional record class (as unsigned integer)</t>
          </li>
        </ol>
        <t>If the record type is elided, record type <tt>AAAA</tt> as specified in <xref target="RFC3596"/> is assumed.
If the record class is elided, record class <tt>IN</tt> as specified in <xref target="RFC1035"/> is assumed.
When a record class is required, the record type <bcp14>MUST</bcp14> also be provided.</t>
        <t>There usually is only one question record <xref target="RFC9619"/>, which is why the question section is a flat array and not nested like the other sections.
This serves to safe overhead from the additional CBOR array header.
In the rare cases when there is more than one question record in the question section, the next question just follows.
In this case, for every question but the last, the record type <bcp14>MUST</bcp14> be included, i.e., it is not optional.
This way it is ensured that the parser can distinguish each question by looking up the name first.</t>
        <t>The remainder of the query is either empty or <bcp14>MUST</bcp14> consist of up to three extra arrays.</t>
        <t>If one extra array is in the query, it encodes the additional section of the query as an array of DNS resource records (see <xref target="sec_rr"/>).
If two extra arrays are in the query, they encode, in that order, the authority and additional sections of the query each as an array of DNS resource records (see <xref target="sec_rr"/>).
If three extra arrays are in the query, they encode, in that order, the answer section, the authority, and additional sections of the query each as an array of DNS resource records (see <xref target="sec_rr"/>).</t>
        <t>As such, the highest precedence of elision is given to the answer section, as it only occurs with mDNS to signify Known Answers <xref target="RFC6762"/>.
The lowest precedence of elision is given to the additional section, as it may contain EDNS OPT Pseudo-RRs, which are common in queries (see <xref target="sec_edns"/>).</t>
        <t>The representation of a DNS query is defined in <xref target="fig_dns-query"/>.</t>
        <figure anchor="fig_dns-query">
          <name>DNS Query Definition</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
dns-query = [
  ? incl-question: bool .default false,
  ? flags: max-uint16 .default 0x0000,
  question-section,
  ? query-extra-sections,
]
question-section = [
  * full-question,
  ? last-question,
]
full-question = (
  domain-name,
  type-spec,
)
last-question = (
  domain-name,
  ? type-spec,
)
query-extra-sections = (
  ? answer-section,
  extra-sections,
)
answer-section = [+ $$dns-rr]
extra-sections = (
  ? authority: [+ $$dns-rr],
  additional: [+ $$dns-rr],
)
]]></sourcecode>
        </figure>
      </section>
      <section anchor="sec_responses">
        <name>DNS Responses</name>
        <t>A DNS response is encoded as a CBOR array containing up to 5 entries.</t>
        <ol spacing="normal" type="1"><li>
            <t>An optional flag field (as unsigned integer),</t>
          </li>
          <li>
            <t>An optional question section (as array, encoded as described in <xref target="sec_queries"/>)</t>
          </li>
          <li>
            <t>The answer section (as array),</t>
          </li>
          <li>
            <t>An optional authority section (as array), and</t>
          </li>
          <li>
            <t>An optional additional section (as array)</t>
          </li>
        </ol>
        <t>As for queries, the DNS transaction ID is elided and implied to be 0.</t>
        <t>If the CBOR array is a response to a query for which the flags indicate that flags are set in the
response, they <bcp14>MUST</bcp14> be set accordingly and thus included in the response.
If the flags are not included, the flags are implied to be 0x8000 (everything unset except for the
QR flag).</t>
        <t>If the response includes only one array, then the DNS answer section represents an
array of one or more DNS Resource Records (see <xref target="sec_rr"/>).</t>
        <t>If the response includes more than 2 arrays, the first entry may be the question section, identified
by just being a flat array and not an array of arrays. It <bcp14>MUST</bcp14> be included, if the client requested it using the boolean
field in the query, otherwise it is <bcp14>OPTIONAL</bcp14>. If it is present, it is followed by the answer section. The question section is
encoded as specified in <xref target="sec_queries"/>.</t>
        <t>If the answer section is followed by one extra array, this array is the additional section.
Like the answer section, the additional section is represented as an array of one or more DNS Resource Records (see <xref target="sec_rr"/>).</t>
        <t>If the answer section is followed by two extra arrays, the first is the authority section, and the second is the additional section.
The authority section is also represented as an array of one or more DNS Resource Records (see
<xref target="sec_rr"/>).</t>
        <t>The authority section is given precedence of elision over the additional section, as due to EDNS options or, e.g., CNAME answers that also provide the A/AAAA records. The additional section tends to show up more often than the authority section.</t>
        <figure anchor="fig_dns-response">
          <name>DNS Response Definition</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
dns-response = [
  ? flags: max-uint16 .default 0x8000,
  ? question-section,
  answer-section,
  ? extra-sections,
]
]]></sourcecode>
        </figure>
      </section>
    </section>
    <section anchor="sec_cbor-packed">
      <name>Compression with Packed CBOR</name>
      <t>Packed CBOR <xref target="I-D.ietf-cbor-packed"/> is used for name compression in "application/dns+cbor".</t>
      <t>If both DNS server and client support table setup tag 113 as described in <xref section="3.1" sectionFormat="of" target="I-D.ietf-cbor-packed"/>, it <bcp14>MAY</bcp14> be used for further
compression in DNS responses.
Especially IPv6 addresses, e.g., in AAAA resource records can benefit from straight referencing to
compress common address prefixes.</t>
      <section anchor="sec_name-compression">
        <name>Name Compression</name>
        <figure anchor="fig_name-compression-cddl">
          <name>CDDL for name compression based on Packed CBOR and as defined in this document.</name>
          <sourcecode type="cddl"><![CDATA[
Text-String-Suffix-Sequence-Packed-CBOR = #6.28259(rump)
]]></sourcecode>
        </figure>
        <t>For name compression, a new packing table setup tag TBD28259 ('n' and 'c' in ASCII) for Packed CBOR <xref target="I-D.ietf-cbor-packed"/> is defined.
Any "application/dns+cbor" encoder and decoder <bcp14>MUST</bcp14> support tag TBD28259 for DNS queries and responses.
It provides an implicit text string suffix sequence table for shared items <em>V</em>.
This table <em>V</em> is appended to the existing table for shared items of any table setup tag enclosing tag TBD28259 (by default empty table).
This implicit (i.e., not explicitly represented) table <em>V</em> is constructed as follows:
Any coherent sequence of text strings encountered within the rump of tag TBD28259 when reading it depth-first, as well as any of its non-empty suffixes, ordered by their appearance within the rump, are added to the table as arrays marked with the splice integration tag 1115 (see <xref section="5.1" sectionFormat="comma" target="I-D.ietf-cbor-packed"/>).
If a sequence for which a tagged array is already in <em>V</em> is encountered, a shared item reference <em>i</em> is added to the rump instead, splicing the content of the array within tag 1115 into the existing array (see <xref section="5.1" sectionFormat="comma" target="I-D.ietf-cbor-packed"/>) and that sequence as well as its non-empty suffixes are not added again to <em>V</em>.
The resulting rump should look like referencing the first instance of the <em>i</em>-th complete string sequence (depth first) in the sequence.</t>
        <t>It is <bcp14>NOT RECOMMENDED</bcp14> to use any other table building tag as defined in <xref section="3" sectionFormat="of" target="I-D.ietf-cbor-packed"/> within TBD28259, as the implicit table of TBD28259 may otherwise lead to more complicating en- and decoding steps.
Particularly, a one-pass decoding with minimal state of DNS messages <bcp14>SHOULD</bcp14> be ensured to be viable on constrained devices.
If another table setup needs to be transported within TBD28259, e.g., certain RDATA or option values might elect to use Packed CBOR as well, they <bcp14>SHOULD</bcp14> be encapsulated as encoded CBOR within a byte string using tag 24 <xref target="RFC8949"/>.</t>
        <t>Due to the order of strings being important, special care should be taken for the order of map (major type 5, <xref target="RFC8949"/>) elements within tag TBD28259.
The "application/dns+cbor" media type specified within this document avoids maps for this reason, in addition to enforcing orders derived from DNS specifications, e.g., <xref target="RFC9460"/> for SvcParams.
If any other CBOR object than an object defined by <tt>dns-message</tt> in <xref target="fig_dns-msg"/> is compressed using TBD28259, map elements <bcp14>MUST</bcp14> be encoded in bytewise lexicographic order of their keys, as specified in <xref section="4.2.1" sectionFormat="of" target="RFC8949"/>, unless the definition of that particular object type provides a different predetermined order.</t>
        <t>The "application/dns+cbor" media type comes with an optional parameter "packed".
If it is not provided, the value of it is assumed to be 0.
With the "application/dns+cbor;packed=0" media type (i.e., even with "application/dns+cbor"), the tag TBD28259 is implicit, i.e., it <bcp14>SHOULD NOT</bcp14> be sent.
This avoids sending the 3 bytes of overhead generated by the presence of the tag.
If the decoder encounters an object marked with "application/dns+cbor;packed=0" that is tagged TBD28259, it <bcp14>MUST NOT</bcp14> discard it and parse its content as if it were implicit.
Otherwise, it might incur an additional message to be sent and media type negotiation might fail unnecessarily.</t>
        <t>The splice integration tag 1115 is the only integration tag in use for "application/dns+cbor" for "packed=0" and "packed=1" (see <xref section="5" sectionFormat="of" target="I-D.ietf-cbor-packed"/>).</t>
        <t>Name compression with an example message can be found in <xref target="sec_name-compression-example"/>.</t>
      </section>
      <section anchor="further-dns-representation-with-tag-113">
        <name>Further DNS Representation with Tag 113</name>
        <t>The representation of DNS responses with packed value 1, i.e., "application/dns+cbor;packed=1", has the same semantics as for tag TBD113
(see <xref section="3.1" sectionFormat="of" target="I-D.ietf-cbor-packed"/>) compressing the name-compressed response as rump.
The difference to <xref target="I-D.ietf-cbor-packed"/> is that tag TBD113 is implicit with media type parameter "packed=1", see <xref target="fig_packed-dns-msg"/>.</t>
        <t>Take the following definition:</t>
        <figure anchor="fig_packed-dns-msg">
          <name>Definition of packed DNS message with media type "application/dns+cbor;packed=1".</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
packed-dns-message = [
  [*shared-and-argument-item],
  rump
]
]]></sourcecode>
        </figure>
        <t>When marked by the "application/dns+cbor;packed=1" media type and parameter it <bcp14>MUST</bcp14> be implicitly understood as the definition provided in <xref target="fig_expl-packed-dns-msg"/>.</t>
        <figure anchor="fig_expl-packed-dns-msg">
          <name>The implicit definition of a packed DNS message with media type "application/dns+cbor;packed=1".</name>
          <sourcecode type="cddl" name="dns-cbor.cddl"><![CDATA[
Packed-Text-String-Suffix-Sequence-Packed-CBOR = #6.113(
  [
    [*shared-and-argument-item],
    Text-String-Suffix-Sequence-Packed-CBOR
  ]
)
]]></sourcecode>
        </figure>
        <t>If the decoder encounters an object marked with "application/dns+cbor;packed=1" that is tagged TBD113 or with its rump tagged TBD28259, it <bcp14>MUST NOT</bcp14> discard it and parse its content as if it were implicit.
Any object marked with "application/dns+cbor;packed=1" that does not fit the definition of
<tt>packed-dns-message</tt> provided in <xref target="fig_packed-dns-msg"/> or variants of explicit tags TBD113 or TBD28259 <bcp14>MUST</bcp14> be interpreted as an invalid message.</t>
        <t>"packed=1" compression of queries is not specified, as apart from EDNS(0) (see <xref target="sec_edns"/>), they only
consist of one question most of the time, i.e., there is close to no redundancy that is not already
covered by "packed=0" and encoding such an object can be too complex for a potentially constrained resolver.</t>
        <t>An example of this mechanism, as well as pseudo-code for a simple decoder can be found in
<xref target="sec_packed-cbor-example"/>.</t>
      </section>
      <section anchor="media-type-negotiation">
        <name>Media Type Negotiation</name>
        <t>A DNS client tells a server that it would accept the media type "application/dns+cbor;packed=1" to negotiate (see, e.g.,
<xref target="RFC9110"/> or <xref section="5.5.4" sectionFormat="comma" target="RFC7252"/>) with the DNS server whether the server supports setup table tag TBD113.
If it does, it <bcp14>MAY</bcp14> request the response to be in packed value 1 (media type "application/dns+cbor;packed=1").
The server then <bcp14>SHOULD</bcp14> reply with the response in Packed CBOR, which it also signals with media type
"application/dns+cbor;packed=1".
Otherwise, both fall back to the implicit "packed=0".</t>
      </section>
      <section anchor="sec_pack-compression">
        <name>Compression</name>
        <t>The method of the compressor to construct the packing table, i.e., how the compression is applied, is out of scope of this document.</t>
      </section>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>This section records the status of known implementations of the
protocol defined by this specification at the time of posting of
this Internet-Draft, and is based on a proposal described in
<xref target="RFC7942"/>.  The description of implementations in this section is
intended to assist the IETF in its decision processes in
progressing drafts to RFCs.  Please note that the listing of any
individual implementation here does not imply endorsement by the
IETF.  Furthermore, no effort has been spent to verify the
information presented here that was supplied by IETF contributors.
This is not intended as, and must not be construed to be, a
catalog of available implementations or their features.  Readers
are advised to note that other implementations may exist.</t>
      <t>According to <xref target="RFC7942"/>, "this will allow reviewers and working
groups to assign due consideration to documents that have the
benefit of running code, which may serve as evidence of valuable
experimentation and feedback that have made the implemented
protocols more mature.  It is up to the individual working groups
to use this information as they see fit".
<?line -20?>
      </t>
      <section anchor="python-decoderencoder">
        <name>Python decoder/encoder</name>
        <t>The authors of this document provide a <eref target="https://github.com/netd-tud/cbor4dns">decoder/encoder
implementation</eref> of both the unpacked and packed format
specified in this document in Python.</t>
        <dl>
          <dt>Level of maturity:</dt>
          <dd>
            <t>prototype</t>
          </dd>
          <dt>Version compatibility:</dt>
          <dd>
            <t>draft-lenders-dns-cbor-10</t>
          </dd>
          <dt>License:</dt>
          <dd>
            <t>MIT</t>
          </dd>
          <dt>Contact information:</dt>
          <dd>
            <t><tt>Martine Lenders &lt;martine.lenders@tu-dresden.de&gt;</tt></t>
          </dd>
          <dt>Last update of this information:</dt>
          <dd>
            <t>July 2024</t>
          </dd>
        </dl>
      </section>
      <section anchor="embedded-decoderencoder">
        <name>Embedded decoder/encoder</name>
        <t>The authors of this document provide a <eref target="https://github.com/RIOT-OS/RIOT/pull/19989">decoder/encoder
implementation</eref> of the unpacked format specified in this
document for the RIOT operating system. It can only encode queries and decode responses.</t>
        <dl>
          <dt>Level of maturity:</dt>
          <dd>
            <t>prototype</t>
          </dd>
          <dt>Version compatibility:</dt>
          <dd>
            <t>draft-lenders-dns-cbor-08</t>
          </dd>
          <dt>License:</dt>
          <dd>
            <t>MIT</t>
          </dd>
          <dt>Contact information:</dt>
          <dd>
            <t><tt>Martine Lenders &lt;martine.lenders@tu-dresden.de&gt;</tt></t>
          </dd>
          <dt>Last update of this information:</dt>
          <dd>
            <t>October 2023</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations of <xref target="RFC8949"/> and <xref target="I-D.ietf-cbor-packed"/> also apply for this document.
For original binary wire format DNS data encoded as byte strings, such as RRs, RDATA,
SvcParamValues, or EDNS OPT data, a parser <bcp14>MUST</bcp14> ensure that any encoded lengths within that byte
string do not overflow the bounds of the byte string or fail otherwise.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="media-type">
        <name>Media Type Registration</name>
        <t>This document registers a media type for the serialization format of DNS messages in CBOR. It
follows the procedures specified in <xref target="RFC6838"/>.</t>
        <section anchor="applicationdnscbor">
          <name>"application/dns+cbor"</name>
          <t>Type name: application</t>
          <t>Subtype name: dns+cbor</t>
          <t>Required parameters: None</t>
          <t>Optional parameters: packed</t>
          <t>Encoding considerations: Must be encoded as using <xref target="RFC8949"/>. See [TBD-this-spec] for details.</t>
          <t>Security considerations: See <xref target="security-considerations"/> of this draft</t>
          <t>Interoperability considerations: TBD</t>
          <t>Published specification: [TBD-this-spec]</t>
          <t>Applications that use this media type: TBD DNS over X systems</t>
          <t>Fragment Identifier Considerations: TBD</t>
          <t>Additional information:</t>
          <t>   Deprecated alias names for this type: N/A</t>
          <t>   Magic number(s): N/A</t>
          <t>   File extension(s): dnsc</t>
          <t>   Macintosh file type code(s): none</t>
          <t>Person &amp; email address to contact for further information:
   IETF CBOR Working Group (cbor@ietf.org) or IETF Applications and Real-Time Area (art@ietf.org)</t>
          <t>Intended usage: COMMON</t>
          <t>Restrictions on Usage: None?</t>
          <t>Author: Martine S. Lenders <eref target="mailto:m.lenders@fu-berlin.de">m.lenders@fu-berlin.de</eref></t>
          <t>Change controller: IETF</t>
          <t>Provisional registrations? No</t>
        </section>
      </section>
      <section anchor="coap-content-format-registration">
        <name>CoAP Content-Format Registration</name>
        <t>IANA is requested to assign CoAP Content-Format ID for the new DNS message media
types in the "CoAP Content-Formats"
sub-registry, within the "CoRE Parameters" registry <xref target="RFC7252"/>, corresponding the
"application/dns+cbor" media type specified in <xref target="media-type"/>:</t>
        <section anchor="cf-app-d-c">
          <name>"application/dns+cbor"</name>
          <t>Media-Type: application/dns+cbor</t>
          <t>Encoding: -</t>
          <t>Id: TBD53</t>
          <t>Reference: [TBD-this-spec]</t>
        </section>
        <section anchor="applicationdnscborpacked1">
          <name>"application/dns+cbor;packed=1"</name>
          <t>Media-Type: application/dns+cbor;packed=1</t>
          <t>Encoding: -</t>
          <t>Id: TBD54</t>
          <t>Reference: [TBD-this-spec]</t>
        </section>
      </section>
      <section anchor="cbor-tags-registry">
        <name>CBOR Tags Registry</name>
        <t>In the registry "<xref section="CBOR Tags" relative="#cbor-tags" sectionFormat="bare" target="IANA.cbor-tags"/>" <xref target="IANA.cbor-tags"/>,
IANA is requested to allocate the tags defined in <xref target="tab-tag-values"/>.</t>
        <table anchor="tab-tag-values">
          <name>Values for Tag Numbers</name>
          <thead>
            <tr>
              <th align="right">Tag</th>
              <th align="left">Data Item</th>
              <th align="left">Semantics</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="right">TBD141</td>
              <td align="left">array</td>
              <td align="left">CBOR EDNS option record</td>
              <td align="left">draft-lenders-dns-cbor</td>
            </tr>
            <tr>
              <td align="right">TBD28259</td>
              <td align="left">any</td>
              <td align="left">Packed CBOR; implicit text string suffix sequence shared-item table</td>
              <td align="left">draft-lenders-dns-cbor</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System. It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1035"/>
          <seriesInfo name="DOI" value="10.17487/RFC1035"/>
        </reference>
        <reference anchor="RFC3596">
          <front>
            <title>DNS Extensions to Support IP Version 6</title>
            <author fullname="S. Thomson" initials="S." surname="Thomson"/>
            <author fullname="C. Huitema" initials="C." surname="Huitema"/>
            <author fullname="V. Ksinant" initials="V." surname="Ksinant"/>
            <author fullname="M. Souissi" initials="M." surname="Souissi"/>
            <date month="October" year="2003"/>
            <abstract>
              <t>This document defines the changes that need to be made to the Domain Name System (DNS) to support hosts running IP version 6 (IPv6). The changes include a resource record type to store an IPv6 address, a domain to support lookups based on an IPv6 address, and updated definitions of existing query types that return Internet addresses as part of additional section processing. The extensions are designed to be compatible with existing applications and, in particular, DNS implementations themselves. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="88"/>
          <seriesInfo name="RFC" value="3596"/>
          <seriesInfo name="DOI" value="10.17487/RFC3596"/>
        </reference>
        <reference anchor="RFC5891">
          <front>
            <title>Internationalized Domain Names in Applications (IDNA): Protocol</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is the revised protocol definition for Internationalized Domain Names (IDNs). The rationale for changes, the relationship to the older specification, and important terminology are provided in other documents. This document specifies the protocol mechanism, called Internationalized Domain Names in Applications (IDNA), for registering and looking up IDNs in a way that does not require changes to the DNS itself. IDNA is only meant for processing domain names, not free text. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5891"/>
          <seriesInfo name="DOI" value="10.17487/RFC5891"/>
        </reference>
        <reference anchor="RFC6891">
          <front>
            <title>Extension Mechanisms for DNS (EDNS(0))</title>
            <author fullname="J. Damas" initials="J." surname="Damas"/>
            <author fullname="M. Graff" initials="M." surname="Graff"/>
            <author fullname="P. Vixie" initials="P." surname="Vixie"/>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Domain Name System's wire protocol includes a number of fixed fields whose range has been or soon will be exhausted and does not allow requestors to advertise their capabilities to responders. This document describes backward-compatible mechanisms for allowing the protocol to grow.</t>
              <t>This document updates the Extension Mechanisms for DNS (EDNS(0)) specification (and obsoletes RFC 2671) based on feedback from deployment experience in several implementations. It also obsoletes RFC 2673 ("Binary Labels in the Domain Name System") and adds considerations on the use of extended labels in the DNS.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="75"/>
          <seriesInfo name="RFC" value="6891"/>
          <seriesInfo name="DOI" value="10.17487/RFC6891"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC9460">
          <front>
            <title>Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)</title>
            <author fullname="B. Schwartz" initials="B." surname="Schwartz"/>
            <author fullname="M. Bishop" initials="M." surname="Bishop"/>
            <author fullname="E. Nygren" initials="E." surname="Nygren"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document specifies the "SVCB" ("Service Binding") and "HTTPS" DNS resource record (RR) types to facilitate the lookup of information needed to make connections to network services, such as for HTTP origins. SVCB records allow a service to be provided from multiple alternative endpoints, each with associated parameters (such as transport protocol configuration), and are extensible to support future uses (such as keys for encrypting the TLS ClientHello). They also enable aliasing of apex domains, which is not possible with CNAME. The HTTPS RR is a variation of SVCB for use with HTTP (see RFC 9110, "HTTP Semantics"). By providing more information to the client before it attempts to establish a connection, these records offer potential benefits to both performance and privacy.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9460"/>
          <seriesInfo name="DOI" value="10.17487/RFC9460"/>
        </reference>
        <reference anchor="I-D.ietf-cbor-packed">
          <front>
            <title>Packed CBOR</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Mikolai Gütschow" initials="M." surname="Gütschow">
              <organization>TUD Dresden University of Technology</organization>
            </author>
            <date day="2" month="February" year="2026"/>
            <abstract>
              <t>   The Concise Binary Object Representation (CBOR, RFC 8949 == STD 94)
   is a data format whose design goals include the possibility of
   extremely small code size, fairly small message size, and
   extensibility without the need for version negotiation.

   CBOR does not provide any forms of data compression.  CBOR data
   items, in particular when generated from legacy data models, often
   allow considerable gains in compactness when applying data
   compression.  While traditional data compression techniques such as
   DEFLATE (RFC 1951) can work well for CBOR encoded data items, their
   disadvantage is that the recipient needs to decompress the compressed
   form before it can make use of the data.

   This specification describes Packed CBOR, a set of CBOR tags and
   simple values that enable a simple transformation of an original CBOR
   data item into a Packed CBOR data item that is almost as easy to
   consume as the original CBOR data item.  A separate decompression
   step is therefore often not required at the recipient.


   // (This cref will be removed by the RFC editor:) The present
   // revision -19 is a work-in-progress release in preparation for
   // another cbor-packed side meeting.  This revision resolves the use
   // of the tunables A/B/C by setting A=16, B=8, and C=8, and choosing
   // requested simple values and tag numbers, in preparation for
   // continuing the early allocation process.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-packed-19"/>
        </reference>
        <reference anchor="I-D.ietf-cbor-edn-literals">
          <front>
            <title>Concise Diagnostic Notation (CDN)</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="20" month="July" year="2026"/>
            <abstract>
              <t>   This document formalizes and consolidates the definition of the
   Concise Diagnostic Notation (CDN) of the Concise Binary Object
   Representation (CBOR), addressing implementer experience.

   Replacing CDN's previous informal descriptions, it updates RFC 8949,
   obsoleting its Section 8, and RFC 8610, obsoleting its Appendix G.

   It also specifies registry-based extension points and uses them to
   support text representations such as of epoch-based dates/times and
   of IP addresses and prefixes.


   // (This cref will be removed by the RFC editor:) This is the
   // editorial round focusing on editorial cleanup, specifically where
   // that causes moving text around.  It does not have WG input yet on
   // any renaming decisions (CDN name, b1/t1 name), ABNF cleanup, or
   // Rohan's suggestion to fix the questionable figure in 3.8.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-edn-literals-27"/>
        </reference>
        <reference anchor="I-D.ietf-cbor-edn-e-ref">
          <front>
            <title>External References to Values in CBOR Diagnostic Notation (EDN)</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="1" month="March" year="2026"/>
            <abstract>
              <t>   The Concise Binary Object Representation (CBOR, RFC 8949) is a data
   format whose design goals include the possibility of extremely small
   code size, fairly small message size, and extensibility without the
   need for version negotiation.

   CBOR diagnostic notation (EDN) is widely used to represent CBOR data
   items in a way that is accessible to humans, for instance for
   examples in a specification.  At the time of writing, EDN did not
   provide mechanisms for composition of such examples from multiple
   components or sources.  This document uses EDN application extensions
   to provide two such mechanisms, both of which insert an imported data
   item into the data item being described in EDN:

   The e'' application extension provides a way to import data items,
   particularly constant values, from a CDDL model (which itself has
   ways to provide composition).

   The ref'' application extension provides a way to import data items
   that are described in EDN.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-edn-e-ref-03"/>
        </reference>
        <reference anchor="IANA.cbor-tags" target="https://www.iana.org/assignments/cbor-tags">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags</title>
            <author>
              <organization>IANA</organization>
            </author>
          </front>
        </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"/>
            <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">
          <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"/>
            <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="RFC2782">
          <front>
            <title>A DNS RR for specifying the location of services (DNS SRV)</title>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen"/>
            <author fullname="P. Vixie" initials="P." surname="Vixie"/>
            <author fullname="L. Esibov" initials="L." surname="Esibov"/>
            <date month="February" year="2000"/>
            <abstract>
              <t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2782"/>
          <seriesInfo name="DOI" value="10.17487/RFC2782"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed"/>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols. This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <referencegroup anchor="BCP219" target="https://www.rfc-editor.org/info/bcp219">
          <reference anchor="RFC9499" target="https://www.rfc-editor.org/info/rfc9499">
            <front>
              <title>DNS Terminology</title>
              <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
              <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
              <date month="March" year="2024"/>
              <abstract>
                <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
                <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
              </abstract>
            </front>
            <seriesInfo name="BCP" value="219"/>
            <seriesInfo name="RFC" value="9499"/>
            <seriesInfo name="DOI" value="10.17487/RFC9499"/>
          </reference>
        </referencegroup>
        <reference anchor="RFC4944">
          <front>
            <title>Transmission of IPv6 Packets over IEEE 802.15.4 Networks</title>
            <author fullname="G. Montenegro" initials="G." surname="Montenegro"/>
            <author fullname="N. Kushalnagar" initials="N." surname="Kushalnagar"/>
            <author fullname="J. Hui" initials="J." surname="Hui"/>
            <author fullname="D. Culler" initials="D." surname="Culler"/>
            <date month="September" year="2007"/>
            <abstract>
              <t>This document describes the frame format for transmission of IPv6 packets and the method of forming IPv6 link-local addresses and statelessly autoconfigured addresses on IEEE 802.15.4 networks. Additional specifications include a simple header compression scheme using shared context and provisions for packet delivery in IEEE 802.15.4 meshes. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4944"/>
          <seriesInfo name="DOI" value="10.17487/RFC4944"/>
        </reference>
        <reference anchor="RFC6282">
          <front>
            <title>Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks</title>
            <author fullname="J. Hui" initials="J." role="editor" surname="Hui"/>
            <author fullname="P. Thubert" initials="P." surname="Thubert"/>
            <date month="September" year="2011"/>
            <abstract>
              <t>This document updates RFC 4944, "Transmission of IPv6 Packets over IEEE 802.15.4 Networks". This document specifies an IPv6 header compression format for IPv6 packet delivery in Low Power Wireless Personal Area Networks (6LoWPANs). The compression format relies on shared context to allow compression of arbitrary prefixes. How the information is maintained in that shared context is out of scope. This document specifies compression of multicast addresses and a framework for compressing next headers. UDP header compression is specified within this framework. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6282"/>
          <seriesInfo name="DOI" value="10.17487/RFC6282"/>
        </reference>
        <reference anchor="RFC7228">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="M. Ersue" initials="M." surname="Ersue"/>
            <author fullname="A. Keranen" initials="A." surname="Keranen"/>
            <date month="May" year="2014"/>
            <abstract>
              <t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks. This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7228"/>
          <seriesInfo name="DOI" value="10.17487/RFC7228"/>
        </reference>
        <reference anchor="RFC8484">
          <front>
            <title>DNS Queries over HTTPS (DoH)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="P. McManus" initials="P." surname="McManus"/>
            <date month="October" year="2018"/>
            <abstract>
              <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS. Each DNS query-response pair is mapped into an HTTP exchange.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8484"/>
          <seriesInfo name="DOI" value="10.17487/RFC8484"/>
        </reference>
        <reference anchor="RFC8618">
          <front>
            <title>Compacted-DNS (C-DNS): A Format for DNS Packet Capture</title>
            <author fullname="J. Dickinson" initials="J." surname="Dickinson"/>
            <author fullname="J. Hague" initials="J." surname="Hague"/>
            <author fullname="S. Dickinson" initials="S." surname="Dickinson"/>
            <author fullname="T. Manderson" initials="T." surname="Manderson"/>
            <author fullname="J. Bond" initials="J." surname="Bond"/>
            <date month="September" year="2019"/>
            <abstract>
              <t>This document describes a data representation for collections of DNS messages. The format is designed for efficient storage and transmission of large packet captures of DNS traffic; it attempts to minimize the size of such packet capture files but retain the full DNS message contents along with the most useful transport metadata. It is intended to assist with the development of DNS traffic- monitoring applications.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8618"/>
          <seriesInfo name="DOI" value="10.17487/RFC8618"/>
        </reference>
        <reference anchor="RFC8724">
          <front>
            <title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
            <author fullname="A. Minaburo" initials="A." surname="Minaburo"/>
            <author fullname="L. Toutain" initials="L." surname="Toutain"/>
            <author fullname="C. Gomez" initials="C." surname="Gomez"/>
            <author fullname="D. Barthel" initials="D." surname="Barthel"/>
            <author fullname="JC. Zuniga" initials="JC." surname="Zuniga"/>
            <date month="April" year="2020"/>
            <abstract>
              <t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t>
              <t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t>
              <t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t>
              <t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8724"/>
          <seriesInfo name="DOI" value="10.17487/RFC8724"/>
        </reference>
        <reference anchor="RFC8824">
          <front>
            <title>Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Minaburo" initials="A." surname="Minaburo"/>
            <author fullname="L. Toutain" initials="L." surname="Toutain"/>
            <author fullname="R. Andreasen" initials="R." surname="Andreasen"/>
            <date month="June" year="2021"/>
            <abstract>
              <t>This document defines how to compress Constrained Application Protocol (CoAP) headers using the Static Context Header Compression and fragmentation (SCHC) framework. SCHC defines a header compression mechanism adapted for Constrained Devices. SCHC uses a static description of the header to reduce the header's redundancy and size. While RFC 8724 describes the SCHC compression and fragmentation framework, and its application for IPv6/UDP headers, this document applies SCHC to CoAP headers. The CoAP header structure differs from IPv6 and UDP, since CoAP uses a flexible header with a variable number of options, themselves of variable length. The CoAP message format is asymmetric: the request messages have a header format different from the format in the response messages. This specification gives guidance on applying SCHC to flexible headers and how to leverage the asymmetry for more efficient compression Rules.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8824"/>
          <seriesInfo name="DOI" value="10.17487/RFC8824"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</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="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9619">
          <front>
            <title>In the DNS, QDCOUNT Is (Usually) One</title>
            <author fullname="R. Bellis" initials="R." surname="Bellis"/>
            <author fullname="J. Abley" initials="J." surname="Abley"/>
            <date month="July" year="2024"/>
            <abstract>
              <t>This document updates RFC 1035 by constraining the allowed value of the QDCOUNT parameter in DNS messages with OPCODE = 0 (QUERY) to a maximum of one, and it specifies the required behavior when values that are not allowed are encountered.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9619"/>
          <seriesInfo name="DOI" value="10.17487/RFC9619"/>
        </reference>
        <reference anchor="RFC9953">
          <front>
            <title>DNS over CoAP (DoC)</title>
            <author fullname="M. S. Lenders" initials="M. S." surname="Lenders"/>
            <author fullname="C. Amsüss" initials="C." surname="Amsüss"/>
            <author fullname="C. Gündoğan" initials="C." surname="Gündoğan"/>
            <author fullname="T. C. Schmidt" initials="T. C." surname="Schmidt"/>
            <author fullname="M. Wählisch" initials="M." surname="Wählisch"/>
            <date month="March" year="2026"/>
            <abstract>
              <t>This document defines a protocol for exchanging DNS queries (OPCODE 0) over the Constrained Application Protocol (CoAP). These CoAP messages can be protected by (D)TLS-Secured CoAP or Object Security for Constrained RESTful Environments (OSCORE) to provide encrypted DNS message exchange for constrained devices in the Internet of Things (IoT).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9953"/>
          <seriesInfo name="DOI" value="10.17487/RFC9953"/>
        </reference>
        <reference anchor="RFC8945">
          <front>
            <title>Secret Key Transaction Authentication for DNS (TSIG)</title>
            <author fullname="F. Dupont" initials="F." surname="Dupont"/>
            <author fullname="S. Morris" initials="S." surname="Morris"/>
            <author fullname="P. Vixie" initials="P." surname="Vixie"/>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="O. Gudmundsson" initials="O." surname="Gudmundsson"/>
            <author fullname="B. Wellington" initials="B." surname="Wellington"/>
            <date month="November" year="2020"/>
            <abstract>
              <t>This document describes a protocol for transaction-level authentication using shared secrets and one-way hashing. It can be used to authenticate dynamic updates to a DNS zone as coming from an approved client or to authenticate responses as coming from an approved name server.</t>
              <t>No recommendation is made here for distributing the shared secrets; it is expected that a network administrator will statically configure name servers and clients using some out-of-band mechanism.</t>
              <t>This document obsoletes RFCs 2845 and 4635.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="93"/>
          <seriesInfo name="RFC" value="8945"/>
          <seriesInfo name="DOI" value="10.17487/RFC8945"/>
        </reference>
        <reference anchor="RFC6762">
          <front>
            <title>Multicast DNS</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>As networked devices become smaller, more portable, and more ubiquitous, the ability to operate with less configured infrastructure is increasingly important. In particular, the ability to look up DNS resource record data types (including, but not limited to, host names) in the absence of a conventional managed DNS server is useful.</t>
              <t>Multicast DNS (mDNS) provides the ability to perform DNS-like operations on the local link in the absence of any conventional Unicast DNS server. In addition, Multicast DNS designates a portion of the DNS namespace to be free for local use, without the need to pay any annual fee, and without the need to set up delegations or otherwise configure a conventional DNS server to answer for those names.</t>
              <t>The primary benefits of Multicast DNS names are that (i) they require little or no administration or configuration to set them up, (ii) they work when no infrastructure is present, and (iii) they work during infrastructure failures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6762"/>
          <seriesInfo name="DOI" value="10.17487/RFC6762"/>
        </reference>
        <reference anchor="RFC7942">
          <front>
            <title>Improving Awareness of Running Code: The Implementation Status Section</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <date month="July" year="2016"/>
            <abstract>
              <t>This document describes a simple process that allows authors of Internet-Drafts to record the status of known implementations by including an Implementation Status section. This will allow reviewers and working groups to assign due consideration to documents that have the benefit of running code, which may serve as evidence of valuable experimentation and feedback that have made the implemented protocols more mature.</t>
              <t>This process is not mandatory. Authors of Internet-Drafts are encouraged to consider using the process for their documents, and working groups are invited to think about applying the process to all of their protocol specifications. This document obsoletes RFC 6982, advancing it to a Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="205"/>
          <seriesInfo name="RFC" value="7942"/>
          <seriesInfo name="DOI" value="10.17487/RFC7942"/>
        </reference>
      </references>
    </references>
    <?line 880?>

<section anchor="examples">
      <name>Examples</name>
      <section anchor="cddl-model-for-e-application-extension">
        <name>CDDL model for <tt>e''</tt> application extension</name>
        <t><xref target="fig_e-cddl-model"/> shows the CDDL model used for the <tt>e''</tt> application extension for external
references to values <xref target="I-D.ietf-cbor-edn-e-ref"/> in our examples.
<tt>C-</tt> contants define DNS classes as unsigned integers from the "DNS CLASSes" sub-registry of the
IANA "Domain Name System (DNS) Parameters" registry.
<tt>RR-</tt> constants define resource record types from the "Resource Record (RR) TYPEs" sub-registry of
the IANA "Domain Name System (DNS) Parameters" registry.</t>
        <figure anchor="fig_e-cddl-model">
          <name>CDDL model defining constants for this document for e''.</name>
          <sourcecode type="cddl"><![CDATA[
C-IN = 1
C-ANY = 255

RR-A = 1
RR-NS = 2
RR-CNAME = 5
RR-PTR = 12
RR-AAAA = 28
RR-ANY = 255
]]></sourcecode>
        </figure>
      </section>
      <section anchor="sec_query-examples">
        <name>DNS Queries</name>
        <t>A DNS query of the record <tt>AAAA</tt> in class <tt>IN</tt> for name "example.org" is
represented in CBOR extended diagnostic notation (EDN) <xref target="I-D.ietf-cbor-edn-literals"/> with <tt>e''</tt>
application extension <xref target="I-D.ietf-cbor-edn-e-ref"/> as follows:</t>
        <sourcecode type="edn"><![CDATA[
[["example", "org"]]
]]></sourcecode>
        <t>The binary (in hexadecimal encoding) of the query looks as follows (14 bytes):</t>
        <artwork><![CDATA[
81                      # array(1)
   82                   # array(2)
      67                # text(7)
         6578616d706c65 # "example"
      63                # text(3)
         6f7267         # "org"
]]></artwork>
        <t>A query of an <tt>A</tt> record for the same name is represented as</t>
        <sourcecode type="edn"><![CDATA[
[["example", "org", e'RR-A']]
]]></sourcecode>
        <t>or in binary (15 bytes)</t>
        <artwork><![CDATA[
81                      # array(1)
   83                   # array(3)
      67                # text(7)
         6578616d706c65 # "example"
      63                # text(3)
         6f7267         # "org"
      01                # e'RR-A' (unsigned(1))
]]></artwork>
        <t>A query of an <tt>ANY</tt> record for that name is represented as</t>
        <sourcecode type="edn"><![CDATA[
[["example", "org", e'RR-ANY', e'C-ANY']]
]]></sourcecode>
        <t>or in binary (18 bytes)</t>
        <artwork><![CDATA[
81                      # array(1)
   84                   # array(4)
      67                # text(7)
         6578616d706c65 # "example"
      63                # text(3)
         6f7267         # "org"
      18 ff             # e'RR-ANY' (unsigned(255))
      18 ff             # e'RR-ANY' (unsigned(255))
]]></artwork>
      </section>
      <section anchor="sec_name-compression-example">
        <name>Name Compression</name>
        <t>Take the following response <em>o</em> in CBOR extended diagnostic notation (EDN) <xref target="I-D.ietf-cbor-edn-literals"/>.
It contains a question for the "www.example.org" AAAA record, with a "svc.www.example.org" CNAME answer and its AAAA record, as well as the "org.example.org" NS record for the "example.org" domain in the authority section, each record with TTL 3600:</t>
        <figure anchor="fig_name-compression-example-unpacked">
          <name>Unpacked example for implicit name compression.</name>
          <sourcecode type="edn"><![CDATA[
[
  ["www", "example", "org"],
  [
    [3600, "www", "example", "org", e'RR-CNAME', "svc", "www", "example", "org"],
    [3600, "svc", "www", "example", "org", ip'2001:db8::1']
  ],
  [
    [3600, "example", "org", e'RR-NS', "org", "example", "org"]
  ],
  []
]
]]></sourcecode>
        </figure>
        <t>The object <em>o</em> would be sent over the wire as the following 136 bytes of binary data, represented
here with hexadecimal encoding (type and data noted in comment).</t>
        <figure anchor="fig_name-compression-example-unpacked-binary">
          <name>Binary of the unpacked example for implicit name compression (136 bytes).</name>
          <artwork><![CDATA[
84                                      # array(4)
   83                                   # array(3)
      63                                # text(3)
         777777                         # "www"
      67                                # text(7)
         6578616D706C65                 # "example"
      63                                # text(3)
         6F7267                         # "org"
   82                                   # array(2)
      89                                # array(9)
         19 0E10                        # unsigned(3600)
         63                             # text(3)
            777777                      # "www"
         67                             # text(7)
            6578616D706C65              # "example"
         63                             # text(3)
            6F7267                      # "org"
         05                             # e'RR-CNAME' (unsigned(5))
         63                             # text(3)
            737663                      # "svc"
         63                             # text(3)
            777777                      # "www"
         67                             # text(7)
            6578616D706C65              # "example"
         63                             # text(3)
            6F7267                      # "org"
      86                                # array(6)
         19 0E10                        # unsigned(3600)
         63                             # text(3)
            737663                      # "svc"
         63                             # text(3)
            777777                      # "www"
         67                             # text(7)
            6578616D706C65              # "example"
         63                             # text(3)
            6F7267                      # "org"
         50                             # bytes(16)
            20010DB8000000000000000000000001 # ip'2001:db8::1'
   81                                   # array(1)
      87                                # array(7)
         19 0E10                        # unsigned(3600)
         67                             # text(7)
            6578616D706C65              # "example"
         63                             # text(3)
            6F7267                      # "org"
         02                             # e'RR-NS' (unsigned(2))
         63                             # text(3)
            6F7267                      # "org"
         67                             # text(7)
            6578616D706C65              # "example"
         63                             # text(3)
            6F7267                      # "org"
   80                                   # array(0)
]]></artwork>
        </figure>
        <t>With name compression, <em>o</em> would generate the following virtual table <em>V</em>.</t>
        <figure anchor="fig_name-compression-example-table">
          <name>Implicit table of shared items for the example _o_.</name>
          <sourcecode type="edn"><![CDATA[
[
    /index 0:/ 1115(["www", "example", "org"]),
    /index 1:/ 1115(["example", "org"]),
    /index 2:/ 1115(["org"]),
    /index 3:/ 1115(["svc", "www", "example", "org"]),
    /index 4:/ 1115(["org", "example", "org"])
]
]]></sourcecode>
        </figure>
        <t>An implementation <bcp14>MAY</bcp14> choose to use references here to reduce memory consumption, as represented in <xref target="fig_name-compression-example-table-comp"/>.
Circular references are not possible due to the construction algorithm of <em>V</em>.</t>
        <figure anchor="fig_name-compression-example-table-comp">
          <name>Implicit table of shared items for the example _o_ with self-references.</name>
          <sourcecode type="edn"><![CDATA[
[
    /index 0:/ 1115(["www", "example", "org"]),
    /index 1:/ 1115(["example", "org"]),
    /index 2:/ 1115(["org"]),
    /index 3:/ 1115(["svc", simple(0)]),
    /index 4:/ 1115(["org", simple(1)])
]
]]></sourcecode>
        </figure>
        <t>Note that the sequence "org", simple(0) is added at index 4 with leading "org", instead of referencing index 2 + index 1 (<tt>simple(2), simple(1)</tt>), as it is its own distinct suffix sequence.
However, its suffix "example", "org" is not added to the table again, as it is already present at index 1.</t>
        <t>Assuming media type "application/dns+cbor;packed=0" (i.e., an implicit tag TBD28259), the packed representation of <em>o</em> would thus be:</t>
        <figure anchor="fig_name-compression-example-packed">
          <name>The packed representation of the name compression example.</name>
          <sourcecode type="edn"><![CDATA[
[
  ["www", "example", "org"],
  [
    [
      3600,
      simple(0) / expands to "www", "example", "org" /,
      e'RR-CNAME',
      "svc",
      simple(0) / expands to "www", "example", "org" /
    ],
    [
      3600,
      simple(3) / expands to "svc", "www", "example", "org" /,
      ip'2001:db8::1'
    ]
  ],
  [
    [
      3600,
      simple(1) / expands to "example", "org" /,
      e'RR-NS',
      "org",
      simple(1) / expands to "example", "org" /,
    ]
  ],
  []
]
]]></sourcecode>
        </figure>
        <t>In binary the packed representation of <em>o</em> would be:</t>
        <figure anchor="fig_name-compression-example-packed-binary">
          <name>Binary of the packed representation of the example (65 bytes).</name>
          <artwork><![CDATA[
84                                   # array(4)
   83                                # array(3)
      63                             # text(3)
         777777                      # "www"
      67                             # text(7)
         6578616D706C65              # "example"
      63                             # text(3)
         6F7267                      # "org"
   82                                # array(2)
      85                             # array(5)
         19 0E10                     # unsigned(3600)
         E0                          # simple(0)
         05                          # e'RR-CNAME' (unsigned(5))
         63                          # text(3)
            737663                   # "svc"
         E0                          # simple(0)
      83                             # array(3)
         19 0E10                     # unsigned(3600)
         E3                          # simple(3)
         50                          # bytes(16)
            20010DB8000000000000000000000001 # ip'2001:db8::1'
   81                                # array(1)
      85                             # array(5)
         19 0E10                     # unsigned(3600)
         E1                          # simple(1)
         02                          # e'RR-NS' (unsigned(2))
         63                          # text(3)
            6F7267                   # "org"
         E1                          # simple(1)
   80                                # array(0)
]]></artwork>
        </figure>
      </section>
      <section anchor="sec_response-examples">
        <name>DNS Responses</name>
        <t>The responses to the examples provided in <xref target="sec_query-examples"/> are shown
below. We use the CBOR extended diagnostic notation (EDN) (see <xref target="I-D.ietf-cbor-edn-literals"/> and <xref section="G" sectionFormat="of" target="RFC8610"/>),
most notably the "ip" extension to represent binary IP addresses as an IP address app-string literal,
with <tt>e''</tt> application extension for external references to values <xref target="I-D.ietf-cbor-edn-e-ref"/>.</t>
        <t>To represent an <tt>AAAA</tt> record with TTL 300 seconds for the IPv6 address 2001:db8::1, a minimal
response to <tt>[["example", "org"]]</tt> could be</t>
        <sourcecode type="edn"><![CDATA[
[[[300, ip'2001:db8::1']]]
]]></sourcecode>
        <t>or in binary (23 bytes)</t>
        <artwork><![CDATA[
81                                            # array(1)
   81                                         # array(1)
      82                                      # array(2)
         19 012c                              # unsigned(300)
         50                                   # bytes(16)
            20010db8000000000000000000000001  # ip'2001:db8::1'
]]></artwork>
        <t>In this case, the name is derived from the query.</t>
        <t>If the name or the context is required, the following response would also
be valid:</t>
        <sourcecode type="edn"><![CDATA[
[[["example", "org", 300, ip'2001:db8::1']]]
]]></sourcecode>
        <t>In binary that response looks like the following (35 bytes):</t>
        <artwork><![CDATA[
81                                            # array(1)
   81                                         # array(1)
      84                                      # array(4)
         67                                   # text(7)
            6578616d706c65                    # "example"
         63                                   # text(3)
            6f7267                            # "org"
         19 012c                              # unsigned(300)
         50                                   # bytes(16)
            20010db8000000000000000000000001  # ip'2001:db8::1'
]]></artwork>
        <t>If the query can not be mapped to the response for some reason or is explicitly requested by the
client, a response would look like:</t>
        <sourcecode type="edn"><![CDATA[
[["example", "org"], [[300, ip'2001:db8::1']]]
]]></sourcecode>
        <t>In binary that response looks like the following (36 bytes):</t>
        <artwork><![CDATA[
82                                            # array(2)
   82                                         # array(2)
      67                                      # text(7)
         6578616d706c65                       # "example"
      63                                      # text(3)
         6f7267                               # "org"
   81                                         # array(1)
      82                                      # array(2)
         19 012c                              # unsigned(300)
         50                                   # bytes(16)
            20010db8000000000000000000000001  # ip'2001:db8::1'
]]></artwork>
        <t>To represent a minimal response of an <tt>A</tt> record with TTL 3600 seconds for the IPv4 address
192.0.2.1, a minimal response to <tt>[["example", "org", 1]]</tt> could be</t>
        <sourcecode type="edn"><![CDATA[
[[[300, ip'192.0.2.1']]]
]]></sourcecode>
        <t>or in binary (11 bytes)</t>
        <artwork><![CDATA[
81                   # array(1)
   81                # array(1)
      82             # array(2)
         19 012c     # unsigned(300)
         44          # bytes(4)
            c0000201 # ip'192.0.2.1'
]]></artwork>
        <t>Note that here also record type <tt>A</tt> can be elided, as this record
type is specified in the (equally elided) question section.</t>
        <t>Lastly, a response to <tt>[["example", "org", e'RR-ANY', e'C-ANY']]</tt> could be</t>
        <sourcecode type="edn"><![CDATA[
[
  # PTR (12) question for "example.org"
  [
    # appends 0 => ["example", "org"] to virtual packing table
    "example",
    # appends 1 => ["org"] to virtual packing table
    "org",
    e'RR-PTR'
  ],
  # Answer section:
  [[
    # PTR (12) for "example.org"
    # (both elided since they are the same as in question)
    # is "_coap._udp.local" with TTL 3600
    3600,
    # appends 2 => ["_coap", "_udp", "local"] to virtual packing table
    "_coap",
    # appends 3 => ["_udp", "local"] to virtual packing table
    "_udp",
    # appends 4 => ["local"] to virtual packing table
    "local"
  ]],
  # Authority section:
  [
    [
      # NS (2) for "example.org"
      # (name elided since its the same as in question)
      # is "ns1.example.org" with TTL 3600
      3600, e'RR-NS',
      # appends 5 => ["ns1", simple(0)] to virtual packing table
      "ns1", simple(0)  # expands to ["example", "org"]
    ],
    [
      # NS (2) for "example.org"
      # (name elided since its the same as in question)
      # is "ns2.example.org" with TTL 3600
      3600, e'RR-NS',
      # appends 6 => ["ns2", simple(0)] to virtual packing table
      "ns2", simple(0)  # expands to ["example", "org"]
    ]
  ],
  # Additional section
  [
    [
      # AAAA (28) for "_coap._udp.local"
      # is 2001:db8::1 with TTL 3600
      simple(2),    # expands to ["_coap", "_udp", "local"]
      3600, e'RR-AAAA', ip'2001:db8::1'
    ],
    [
      # AAAA (28) for "_coap._udp.local"
      # is 2001:db8::2 with TTL 3600
      simple(2),    # expands to ["_coap", "_udp", "local"]
      3600, e'RR-AAAA', ip'2001:db8::2'
    ],
    [
      # AAAA (28) for "ns1.example.org"
      # is 2001:db8::35 with TTL 3600
      simple(5),    # expands to ["ns1", ["example", "org"]]
      3600, e'RR-AAAA', ip'2001:db8::35'
    ],
    [
      # AAAA (28) for "ns2.example.org"
      # is 2001:db8::3535 with TTL 3600
      simple(6),    # expands to ["ns2", ["example", "org"]
      3600, e'RR-AAAA', ip'2001:db8::3535'
    ]
  ]
]
]]></sourcecode>
        <t>or in binary (155 bytes)</t>
        <artwork><![CDATA[
84                                            # array(4)
   83                                         # array(3)
      67                                      # text(7)
         6578616d706c65                       # "example"
      63                                      # text(3)
         6f7267                               # "org"
      0c                                      # e'RR-PTR' (unsigned(12))
   81                                         # array(1)
      84                                      # array(4)
         19 0e10                              # unsigned(3600)
         65                                   # text(5)
            5f636f6170                        # "_coap"
         64                                   # text(4)
            5f756470                          # "_udp"
         65                                   # text(5)
            6c6f63616c                        # "local"
   82                                         # array(2)
      84                                      # array(4)
         19 0e10                              # unsigned(3600)
         02                                   # e'RR-NS' (unsigned(2))
         63                                   # text(3)
            6e7331                            # "ns1"
         e0                                   # simple(0)
      84                                      # array(4)
         19 0e10                              # unsigned(3600)
         02                                   # e'RR-NS' (unsigned(2))
         63                                   # text(3)
            6e7332                            # "ns2"
         e0                                   # simple(0)
   84                                         # array(4)
      84                                      # array(4)
         e2                                   # simple(2)
         19 0e10                              # unsigned(3600)
         18 1c                                # e'RR-AAAA' (unsigned(28))
         50                                   # bytes(16)
            20010db8000000000000000000000001  # ip'2001:db8::1'
      84                                      # array(4)
         e2                                   # simple(2)
         19 0e10                              # unsigned(3600)
         18 1c                                # e'RR-AAAA' (unsigned(28))
         50                                   # bytes(16)
            20010db8000000000000000000000002  # ip'2001:db8::2'
      84                                      # array(4)
         e5                                   # simple(5)
         19 0e10                              # unsigned(3600)
         18 1c                                # e'RR-AAAA' (unsigned(28))
         50                                   # bytes(16)
            20010db8000000000000000000000035  # ip'2001:db8::35'
      84                                      # array(4)
         e6                                   # simple(6)
         19 0e10                              # unsigned(3600)
         18 1c                                # e'RR-AAAA' (unsigned(28))
         50                                   # bytes(16)
            20010db8000000000000000000003535  # ip'2001:db8::3535'
]]></artwork>
        <t>This response advertises two local CoAP servers (identified by service name _coap._udp.local) at
2001:db8::1 and 2001:db8::2 and two nameservers for the example.org domain, ns1.example.org at
2001:db8::35 and ns2.example.org at 2001:db8::3535. Each of the transmitted records has a TTL of
3600 seconds.
Note the use of name compression (see <xref target="sec_name-compression"/>) in this example.</t>
      </section>
      <section anchor="sec_packed-cbor-example">
        <name>Name Compression and Packed CBOR</name>
        <t><xref target="fig_name-compression-example-packed-113"/> shows the example from <xref target="fig_name-compression-example-unpacked"/> with "packed=1".</t>
        <figure anchor="fig_name-compression-example-packed-113">
          <name>The packed representation of the example of a message marked with "application/dns+cbor;packed=1".</name>
          <sourcecode type="edn"><![CDATA[
[
  ["org", 3600],
  [
    ["www", "example", simple(0) / expands to "org" /],
    [
      [
        simple(1) / expands to 3600 /,
        simple(2) / expands to "www", "example", "org" /,
        e'RR-CNAME',
        "svc",
        simple(2) / expands to "www", "example", "org" /
      ],
      [
        simple(1) / expands to 3600 /,
        simple(5) / expands to "svc", "www", "example", "org" /,
        ip'2001:db8::1'
      ]
    ],
    [
      [
        simple(1) / expands to 3600 /,
        simple(3) / expands to "example", "org" /,
        e'RR-NS',
        simple(0) / expands to "org" /,
        simple(3) / expands to "example", "org" /,
      ]
    ],
    []
  ]
]
]]></sourcecode>
        </figure>
        <t>Note, that the encoder needs to rewrite the references from <xref target="fig_name-compression-example-unpacked"/> as the implicit table <em>V</em> is appended to the shared argument table <tt>["org", 600]</tt>.</t>
        <t>In binary, that example looks like the following (represented in hexadecimal):</t>
        <figure anchor="fig_name-compression-example-packed-113-binary">
          <name>The binary of the packed representation of the example marked with "application/dns+cbor;packed=1" (62 bytes).</name>
          <artwork><![CDATA[
82                                      # array(2)
   82                                   # array(2)
      63                                # text(3)
         6F7267                         # "org"
      19 0E10                           # unsigned(600)
   84                                   # array(4)
      83                                # array(3)
         63                             # text(3)
            777777                      # "www"
         67                             # text(7)
            6578616D706C65              # "example"
         E0                             # simple(0)
      82                                # array(2)
         85                             # array(5)
            E1                          # simple(1)
            E2                          # simple(2)
            05                          # e'RR-CNAME' (unsigned(5))
            63                          # text(3)
               737663                   # "svc"
            E2                          # simple(2)
         83                             # array(3)
            E1                          # simple(1)
            E5                          # simple(5)
            50                          # bytes(16)
               20010DB8000000000000000000000001 # ip'2001:db8::1'
      81                                # array(1)
         85                             # array(5)
            E1                          # unsigned(600)
            E3                          # simple(3)
            02                          # e'RR-NS' (unsigned(2))
            E0                          # simple(0)
            E3                          # simple(3)
      80                                # array(0)
]]></artwork>
        </figure>
        <t>Implicitly, a decoder would interpret this as the following EDN:</t>
        <figure anchor="fig_expl-name-compression-example-packed-113">
          <name>The explicit interpretation of the packed representation of the example of a message marked with "application/dns+cbor;packed=1".</name>
          <sourcecode type="edn"><![CDATA[
TBD113(
  [
    ["org", 3600],
    TBD28259(
      [
        ["www", "example", simple(0) / expands to "org" /],
        [
          [
            simple(1) / expands to 3600 /,
            simple(2) / expands to "www", "example", "org" /,
            e'RR-CNAME',
            "svc",
            simple(2) / expands to "www", "example", "org" /
          ],
          [
            simple(1) / expands to 3600 /,
            simple(5) / expands to "svc", "www", "example", "org" /,
            ip'2001:db8::1'
          ]
        ],
        [
          [
            simple(1) / expands to 3600 /,
            simple(3) / expands to "example", "org" /,
            e'RR-NS',
            simple(0) / expands to "org" /,
            simple(3) / expands to "example", "org" /,
          ]
        ],
        []
      ]
    )
  ]
)
]]></sourcecode>
        </figure>
        <section anchor="example-decoder">
          <name>Example Decoder</name>
          <t>A decoder to interpret an object like the one in <xref target="fig_name-compression-example-packed-113"/> would have the following pseudo-code:</t>
          <figure anchor="fig_28259-113-decoder">
            <name>Pseudo-code for an example decoder</name>
            <artwork><![CDATA[
function decode_cbor_dns(binary: bytes, packed: uint = 0): CBORObject {
  obj: CBORObject = cbor.decode(binary)
  unpacker: Unpacker = Unpacker()
  match (packed) {
    when 0 then {
      packing_table = []
      rump = obj
    },
    when 1 then {
      /* except explicit 113 */
      if (typeof(obj) is CBORTag and tag-number of obj == 113) {
        obj = tag-content of obj
      }

      assume that typeof(obj) is CBORArray and obj.length == 2
      assume that typeof(obj[0]) is CBORArray  # packing table

      /* step into tag 113 context for unpacker with all its references
       * (simple values and tag 6) and function tags */
      Tell `unpacker` that we are in rump of tag 113 now

      /* prepend to current packing table of unpacker */
      unpacker.packing_table = obj[0] concat unpacker.packing_table
      rump = obj[1]
    },
    when anything else then {
      throw "Not supported yet!"
    },
  }

  return unpack_names(rump, unpacker)
}

function unpack_names(rump: Any, unpacker: Unpacker): CBORObject {
  /* except explicit 28259 */
  if (typeof(rump) is CBORTag and tag-number of rump == 28259) {
    rump = tag-content of rump
  }

  /* step into tag 28259 context for unpacker with all its references
   * (simple values and tag 6) */
  Tell `unpacker` that we are in rump of tag 28259 now

  return recursive_unpack_names(rump, unpacker, unpacker.packing_table.length)
}

function is_splice_tag(obj: CBORObject): bool {
  return (typeof(packed_idx) is CBORTag and tag-number of packed_idx == 1115)
}

function recursive_unpack_names(
    obj: CBORObject, unpacker: Unpacker, outer_table_len: Integer
): CBORObject {
  match typeof(obj) {
    when CBORInt, CBORByteString, or CBORTextString then {
      return obj
    }
    when CBORArray then {
      result: CBORArray = []
      /* name_start_idx will point to first element of a name and its suffixes
       * in the packing table */
      name_start_idx: CBORInt or null = null
      for (elem in obj) {
        if (typeof(elem) is CBORTextString) {
          /* Create a local name reference in packing table for this name
           * and all its suffixes */
          if (name_start_idx is null) {
            unpacker.packing_table = unpacker.packing_table concat [
              CBORTag(tag-number = 1115, tag-content = []))
            ]
            name_start_idx = unpacker.packing_table.length - 1
          }
          else {
            /* create packing table entry for new suffix */
            unpacker.packing_table = unpacker.packing_table concat [
              CBORTag(tag-number = 1115, tag-content = []))
            ]
          }

          /* Append to all suffixes in local name reference */
          for (i from i == name_start_idx
                 to i < unpacker.packing_table.length)) {
            append elem to tag-content of unpacker.packing_table[i]
          }
          append elem to result
        }
        elif (unpacker.is_shared_reference(elem)) {   /* is simple() or 6() */
          /* calculate index from simple() or 6() */
          ref_idx: uint = unpacker.ref_idx(elem)
          assume that (ref_idx < unpacker.packing_table.length)

          packed_obj: CBORObject = unpacker.packing_table[ref_idx]

          /* check if this reference is part of a longer name */
          if (is_splice_tag(packed_obj) or
              typeof(packed_obj) is CBORTextString) {
            if (name_start_idx is not null) {
              /* if name_start_idx is already set, append to all suffixes
               * from name_start_idx to end of packing table */
              for (i from i == name_start_idx
                     to i < unpacker.packing_table.length)) {
                append elem to tag-content of unpacker.packing_table[i]
              }

              /* check if ref_idx references implicit table V */
              if (ref_idx > outer_table_len) {
                /* close name_start_idx pointing to first element of name
                 * sequence, as only CBORTextStrings (including those
                 * referenced in outer tables) continue the name */
                name_start_idx = null
              }
            }
          }
          if (is_splice_tag(packed_obj)) {
            /* name suffix is spliced in */
            assume that (
              typeof(tag-content of packed_obj) is CBORArray containing
              only CBORTextString and references to CBORTextString
            )
            result = result concat tag-content of packed_obj
          }
          else {
            append packed_obj to result
          }
        }
        else {
          /* not part of a name anymore, so close name_start_idx pointing to
           * first element of name sequence */
          name_start_idx = null
          match typeof(elem) {
            /* step into arrays and tags */
            when CBORArray then {
              result = result concat recursive_unpack_names(
                  elem, unpacker, outer_table_len
              )
            }
            when CBORTag then {
              append CBORTag(
                tag-number = tag-number of elem,
                tag-content = recursive_unpack_names(
                    tag-content of elem, unpacker, outer_table_len
                ),
              ) to result
            }
            when CBORMap then {
              throw warning "Ignore maps which are not part of this spec"
            }
            when anything else then {
              append elem to result
            }
          }
        }
      }
      return result
    }
    when anything else then {
      throw warning "Ignore other types not part of this spec"
    }
  }
}
]]></artwork>
          </figure>
        </section>
      </section>
    </section>
    <section anchor="sec_comparison-to-classic-dns">
      <name>Comparison to Classic DNS Wire Format</name>
      <t><xref target="tab-cbor-comparison"/> shows a comparison between the classic DNS wire format and the
application/dns+cbor format. Note that the worst case results typically appear only rarely in DNS.
The classic DNS format is preferred in those cases. A key for which configuration was used in which
case can be seen in <xref target="tab-cbor-comparison-key"/>. Any name label that is longer than 23 bytes adds
a name overhead of 1 byte to its CBOR type header.<cref anchor="_10" source="—mlenders">TBD: Also add structured RRs?.</cref></t>
      <table anchor="tab-cbor-comparison">
        <name>Comparison of application/dns+cbor to classic DNS format.</name>
        <thead>
          <tr>
            <th align="left" rowspan="2">Item</th>
            <th align="right" rowspan="2">Classic DNS format [bytes]</th>
            <th align="center" colspan="3">application/dns+cbor [bytes]</th>
          </tr>
          <tr>
            <th align="right">best case</th>
            <th align="right">realistic worst case</th>
            <th align="right">theoretical worst case</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Header (ID &amp; Flags)</td>
            <td align="right">4</td>
            <td align="right">1</td>
            <td align="right">4</td>
            <td align="right">4</td>
          </tr>
          <tr>
            <td align="left">Count fields</td>
            <td align="right">2</td>
            <td align="right">1</td>
            <td align="right">3</td>
            <td align="right">3</td>
          </tr>
          <tr>
            <td align="left">Question section</td>
            <td align="right">6 + name len.</td>
            <td align="right">2 + name len.</td>
            <td align="right">6 + name len. + name overhead</td>
            <td align="right">9 + name len. + name overhead</td>
          </tr>
          <tr>
            <td align="left">Standard RR</td>
            <td align="right">12 + name len. + rdata len.</td>
            <td align="right">3        <br/>
 + rdata len.</td>
            <td align="right">14 + name len. + rdata len. + name overhead</td>
            <td align="right">17 + name len. + rdata len. + name overhead</td>
          </tr>
          <tr>
            <td align="left">Standard RR with name rdata</td>
            <td align="right">12 + name len. + rdata len.</td>
            <td align="right">4</td>
            <td align="right">14 + name len. + rdata len. + name overheads</td>
            <td align="right">16 + name len. + rdata len. + name overheads</td>
          </tr>
          <tr>
            <td align="left">EDNS Opt Pseudo-RR</td>
            <td align="right">11 + options</td>
            <td align="right">2 + options</td>
            <td align="right">6 + options</td>
            <td align="right">14 + options</td>
          </tr>
          <tr>
            <td align="left">EDNS Option</td>
            <td align="right">4 + value len.</td>
            <td align="right">2 + value len.</td>
            <td align="right">4 + value len.</td>
            <td align="right">6 + value len.</td>
          </tr>
        </tbody>
      </table>
      <table anchor="tab-cbor-comparison-key">
        <name>Configuration key for     <xref target="tab-cbor-comparison"/>
.</name>
        <thead>
          <tr>
            <th align="left" rowspan="2">Item</th>
            <th align="center" colspan="3">application/dns+cbor configuration</th>
          </tr>
          <tr>
            <th align="right">best case</th>
            <th align="right">realistic worst case</th>
            <th align="right">theoretical worst case</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Header (ID &amp; Flags)</td>
            <td align="right">Flags elided</td>
            <td align="right">QR, Opcode, AA, TC, or RD are set</td>
            <td align="right">QR, Opcode, AA, TC, or RD are set</td>
          </tr>
          <tr>
            <td align="left">Count fields</td>
            <td align="right">Encoded in CBOR array header</td>
            <td align="right">Encoded in CBOR array header,        <br/>
&gt;255 records in section</td>
            <td align="right">Encoded in CBOR array header,        <br/>
&gt;255 records in section</td>
          </tr>
          <tr>
            <td align="left">Question section</td>
            <td align="right">Class, type, and name elided</td>
            <td align="right">Type &gt; 255,        <br/>
label len. &gt; 23</td>
            <td align="right">Type &gt; 255,        <br/>
Class &gt; 255,        <br/>
label len. &gt; 23</td>
          </tr>
          <tr>
            <td align="left">Standard RR</td>
            <td align="right">Class, type, and name elided,        <br/>
rdata len. &lt; 24</td>
            <td align="right">Type &gt; 255,        <br/>
label len. &gt; 23        <br/>
rdata len. &gt; 255</td>
            <td align="right">Type &gt; 255,        <br/>
Class &gt; 255,        <br/>
label len. &gt; 23        <br/>
rdata len. &gt; 255</td>
          </tr>
          <tr>
            <td align="left">Standard RR with name rdata</td>
            <td align="right">Class, type, and name elided,        <br/>
simple(i) with i &lt; 16</td>
            <td align="right">Type &gt; 255,        <br/>
label len. &gt; 23        <br/>
name uncompressed</td>
            <td align="right">Type &gt; 255,        <br/>
Class &gt; 255,        <br/>
label len. &gt; 23        <br/>
name uncompressed</td>
          </tr>
          <tr>
            <td align="left">EDNS Opt Pseudo-RR</td>
            <td align="right">All EDNS(0) fields elided</td>
            <td align="right">Rcode &lt; 24,        <br/>
DO flag set,        <br/>
            </td>
            <td align="right">UDP payload        <br/>
len. &gt; 255        <br/>
Rcode &gt; 255        <br/>
Version &gt; 255        <br/>
DO flag set</td>
          </tr>
          <tr>
            <td align="left">EDNS Option</td>
            <td align="right">Code &lt; 24        <br/>
Length &lt; 24</td>
            <td align="right">Code &lt; 24        <br/>
Length &gt; 255</td>
            <td align="right">Code &gt; 255        <br/>
Length &gt; 255</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <section anchor="since-draft-lenders-dns-cbor-17">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-17">draft-lenders-dns-cbor-17</eref></name>
        <ul spacing="normal">
          <li>
            <t>Re-instate appendix</t>
          </li>
          <li>
            <t>Use BCP 219 for DNS terminology</t>
          </li>
          <li>
            <t>Fix broken example syntax</t>
          </li>
          <li>
            <t>Add security considerations</t>
          </li>
          <li>
            <t>Editorial updates</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-16">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-16">draft-lenders-dns-cbor-16</eref></name>
        <ul spacing="normal">
          <li>
            <t>Minor editorial updates</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-15">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-15">draft-lenders-dns-cbor-15</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add Vadim Goncharov as contributor</t>
          </li>
          <li>
            <t>Add Mikolai Gütschow as co-author</t>
          </li>
          <li>
            <t>Make options in OPT record a flat list of alternating key-value-pairs</t>
          </li>
          <li>
            <t>Use e'' application extension in examples for better readability of RR types and clases</t>
          </li>
          <li>
            <t>Pass on name compression
            </t>
            <ul spacing="normal">
              <li>
                <t>TBD28259 now appends, rather than prepends to existing packing tables to allow for single pass
decoders with minimum state.</t>
              </li>
              <li>
                <t>Consequently, disallow inner table setup tags to TBD28259, as that would increase complexity of
both decoders and encoders</t>
              </li>
              <li>
                <t>Add considerations on maps within TBD28259 (see also #15)</t>
              </li>
              <li>
                <t>Clarify implicit nature with <tt>packed</tt></t>
              </li>
              <li>
                <t>Provide actual DNS examples</t>
              </li>
              <li>
                <t>Add example decoder as pseudo-code</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-14">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-14">draft-lenders-dns-cbor-14</eref></name>
        <ul spacing="normal">
          <li>
            <t>Correction and nits</t>
          </li>
          <li>
            <t>Explicitly state which integration tags are in use</t>
          </li>
          <li>
            <t>Add binary examples in CBOR-pretty</t>
          </li>
          <li>
            <t>Unify formatting for and mention explicitly application/dns+cbor from the top</t>
          </li>
          <li>
            <t>Explicitly define behavior for query[0] = True in response text</t>
          </li>
          <li>
            <t>Clarifications around media type parameter <tt>packed=1</tt></t>
          </li>
          <li>
            <t>Remove TBD reference (it never came to be)</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-13">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-13">draft-lenders-dns-cbor-13</eref></name>
        <ul spacing="normal">
          <li>
            <t>Make use of splicing integration tag 1115
            </t>
            <ul spacing="normal">
              <li>
                <t>Make domain names flat text string sequences again</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Add capability to summarize rrsets</t>
          </li>
          <li>
            <t>Provide extension point for IP addresses</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-12">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-12">draft-lenders-dns-cbor-12</eref></name>
        <ul spacing="normal">
          <li>
            <t>Fix bug in packed examples</t>
          </li>
          <li>
            <t>Improve compression examples for clarity</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-11">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-11">draft-lenders-dns-cbor-11</eref></name>
        <ul spacing="normal">
          <li>
            <t>Update repo links to cbor-wg org in draft</t>
          </li>
          <li>
            <t><tt>s/CBOR-packed/Packed CBOR/</tt></t>
          </li>
          <li>
            <t>Small pass on wording</t>
          </li>
          <li>
            <t>Remove commented-out parts</t>
          </li>
          <li>
            <t>Make name compression be based on Packed CBOR</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-10">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-10">draft-lenders-dns-cbor-10</eref></name>
        <ul spacing="normal">
          <li>
            <t>Address IANA #1392416 early review</t>
          </li>
          <li>
            <t>Fix external section references</t>
          </li>
          <li>
            <t>Update implementation status</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-09">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-09">draft-lenders-dns-cbor-09</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add recommendation on label encoding</t>
          </li>
          <li>
            <t>Provide extension points
            </t>
            <ul spacing="normal">
              <li>
                <t>Mark dns-rr specifically as extension point</t>
              </li>
              <li>
                <t>Provide extension points for parameter values (options and svc-params)</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Point out CBOR-packed needs to be unpacked when identifying names</t>
          </li>
          <li>
            <t>Distinguish from C-DNS <xref target="RFC8618"/></t>
          </li>
          <li>
            <t>State objectives in introduction</t>
          </li>
          <li>
            <t>Fix nits and typos</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-08">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-08">draft-lenders-dns-cbor-08</eref></name>
        <ul spacing="normal">
          <li>
            <t>Clarify why question section was designed the way it is</t>
          </li>
          <li>
            <t>Add answer section to queries for Known Answers in mDNS</t>
          </li>
          <li>
            <t>Express names as sequence of labels</t>
          </li>
          <li>
            <t>Provide dedicated types for more structured RDATA</t>
          </li>
          <li>
            <t>Add RFC1035-like name compression</t>
          </li>
          <li>
            <t>Add switching boolean to query message to explicitly have question present in response</t>
          </li>
          <li>
            <t>Make EDNS options a map</t>
          </li>
          <li>
            <t>Update examples and comparison table in appendices</t>
          </li>
          <li>
            <t>Update implementation section</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-07">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-07">draft-lenders-dns-cbor-07</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add <xref target="sec_comparison-to-classic-dns"/> with comparison to classic DNS wire format</t>
          </li>
          <li>
            <t>"wire format" -&gt; "classic DNS wire format"</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-06">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-06">draft-lenders-dns-cbor-06</eref></name>
        <ul spacing="normal">
          <li>
            <t>Fixes wording and spelling mistakes</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-05">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-05">draft-lenders-dns-cbor-05</eref></name>
        <ul spacing="normal">
          <li>
            <t>Fix <xref target="cf-app-d-c"/> title</t>
          </li>
          <li>
            <t>Amend for capability to carry more than one question</t>
          </li>
          <li>
            <t>Hint at future of name compression in later draft versions</t>
          </li>
          <li>
            <t>Use canonical name for CBOR-packed</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-04">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-04">draft-lenders-dns-cbor-04</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add Implementation Status section</t>
          </li>
          <li>
            <t>Remove int as representation for rdata</t>
          </li>
          <li>
            <t>Add note on representation of more structured rdata</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-03">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-03">draft-lenders-dns-cbor-03</eref></name>
        <ul spacing="normal">
          <li>
            <t>Provide format description for EDNS OPT Pseudo-RRs</t>
          </li>
          <li>
            <t>Simplify CDDL to more idiomatic style</t>
          </li>
          <li>
            <t>Remove DNS transaction IDs</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-02">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-02">draft-lenders-dns-cbor-02</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add Discussion section and note on compression</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-01">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-01">draft-lenders-dns-cbor-01</eref></name>
        <ul spacing="normal">
          <li>
            <t>Use MIME type parameter for packed instead of own MIME type</t>
          </li>
          <li>
            <t>Update definitions to accommodate for TID and flags, as well as more sections in query</t>
          </li>
          <li>
            <t>Clarify fallback to wire-format</t>
          </li>
        </ul>
      </section>
      <section anchor="since-draft-lenders-dns-cbor-00">
        <name>Since <eref target="https://datatracker.ietf.org/doc/html/draft-lenders-dns-cbor-00">draft-lenders-dns-cbor-00</eref></name>
        <ul spacing="normal">
          <li>
            <t>Add support for DNS transaction IDs</t>
          </li>
          <li>
            <t>Name and Address compression utilizing CBOR-packed</t>
          </li>
          <li>
            <t>Minor fixes to CBOR EDN and CDDL</t>
          </li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We want to extend special thanks to Christian Amsüss for his input in the brainstorming session that resulted in the current form of name compression.</t>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="V." surname="Goncharov" fullname="Vadim Goncharov">
        <organization/>
        <address>
          <email>vadimnuclight@gmail.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
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
CG25Q+dRleWel0EZ07Z3QvRLveYVxyy6yWIRQ07S2IqsXP8SZsNzu3K/Rb/l
I40vNMMjv190nawCAV8jpDmroHTDyakgsWqewR0yDKq5Bb9uQQW18I6r8uwN
bW7cIbdf3Sm9X/3HuYc9L1Vc1UYhVs/iV3dKllZ3yHzGPnOTn2tcOfUFkvnV
XdKm1Sop/eoOK7tDYr+6I9LnIrDGk1N3S+5Xd83vV3dK8Ve/DuFWBJftt+oN
CXXfbH91h7svKwP6q+Xyg9VRyud3qieuktO/kvWh1ve23BsA+p4r58zo17s4
EdG8tcb+TKV21LPjV06KIj9f5bwQWPYUlLmTuV6xRO/qP/ij+H8vbd86Te/g
T+C/Wp8C/5X8irvM5HR+3/6CS727r4H/6uUUAWn+/pX2aBU/xGyO54s4gy30
R+48cT0e9Lf8/1bgPn/pPH25ostink80LOtJir+FR4NVy6WcszqO5HGaQyNR
AF1WnNjHCo2/gA8oLi5/4EU6WEjpB50cueQ8TigOxnCWcNEDBucDLuADrGSd
xe0BS8S2IOpAzQBW9URttg4oOPOagf0Fdgvg9r57onCsLo8rw+GuiheWHSgp
6JdBU/3nOraYhEV/pNZ5yhYNrvC9wERtKnqJ7xchFckJ+sAO2RNLQ/Ri6BME
ib743LZD9PwhNr6CbabXEQ2lIAV9pYVLPOQafulwHUajSgS4RqzcTfG78KrD
bz7QW5eX/6iePMEBWmYCxd9SS/0aKTeVBkAh/Ac/XS6ub3XKQ6qhjpPCt11+
8QVn25rb/d3m+9IIoJX9XCqLibyIpkiMqTyKvW1uvGBcUm+cFOIcj/lxVuOD
6wV/pdblyUu5xiWIUnstfgpMkxwVsDeYPsfinBd6kgt55i2i7Emgf9pSZEyB
LElvHMiBH9Bnp4cvZhk/Te8uEnsa+M2U+ptumZAYcbj6Pj5MUtusQmrveu8r
1BYmt/huw5WKxnyhz1JeMcrSG7X2Cl9b5YcvQazcRsV/W7OjEG2AXJhliUDx
gaLF6zhr2wDWCqChQWul4YE6TG7bNYxXZeIaduBS+oQzhxlw3AXcwJh5wgNo
hhB0lbiBnqqW5VbokAFYlRLnUSEtZgV6YwiE4mQ7Mnw6J4+vow9zNqbdQDvC
vv6+xfkHfp4e2lytl8QpbNVlmo4JiwKB3gqWkx/iwacFG2IbspTq7foANCwp
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
v345Gxf2LTldPwOVfp353A3+P3M0njubNwEA

-->

</rfc>
