<?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-17" 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-17"/>
    <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="03"/>
    <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 for DoH and a Content-Format option 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="RFC8499"/>.</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 <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.
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.</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.
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 special records, e.g., 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.</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>If the SvcPriority is present can be determined 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>If the TargetName is present can be determined 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 in elision is given to the answer section, as it only occurs with mDNS to signify Known Answers <xref target="RFC6762"/>.
The lowest precedence 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 not being an array of arrays. It <bcp14>MUST</bcp14> be included, if the client requested it using the boolean
field in the query. 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 in 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>TODO Security</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>
    <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 (see
<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 <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>This 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"/>)
with <tt>e''</tt> application extension <xref target="I-D.ietf-cbor-edn-e-ref"/>,
most notably the "ip" extension to represent binary IP addresses as an IP address app-string literal.</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, 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 the 1 of record type <tt>A</tt> can be elided, as this record
type is specified in the 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)],
        [
          [
            simple(1),
            simple(2) / expands to "www", "example", "org" /,
            e'RR-CNAME',
            "svc",
            simple(2) / expands to "www", "example", "org" /
          ],
          [
            simple(1),
            simple(5) / expands to "svc", "www", "example", "org" /
            ip'2001:db8::1'
          ]
        ],
        [
          [
            simple(1),
            simple(3) / expands to "example", "org" /,
            e'RR-NS',
            simple(0),
            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-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>
  </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="15" month="June" 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:) -26 is intended to
   // address the May/June 2026 Working Group Last Call comments on -25
   // and the ensuing WG discussions.  Specifically, this update: • is
   // going further with the idea to entirely replace the non- backwards
   // compatible update considered for the RFC 8610/G.4 concatenation by
   // two new application extensions (temporarily named b1/t1), and to
   // add related application-oriented extensions that deprecate the
   // original streamstring syntax. • includes the float'' application-
   // extension so that the entire CBOR format can be covered. • now
   // uses rules closer to those of markdown for handling data
   // transparency in raw strings, simplifying their implementation. •
   // adds security considerations. • proactively reserves the
   // application-extension identifier "pragma" for potential future
   // standardization. • This update does not address certain comments
   // that propose some editorial restructuring requiring moving text
   // around; this is best done in a next revision after the technical
   // comments are addressed.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cbor-edn-literals-26"/>
        </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>
        <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="RFC8499">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="A. Sullivan" initials="A." surname="Sullivan"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="January" year="2019"/>
            <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 sometimes 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 obsoletes RFC 7719 and updates RFC 2308.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8499"/>
          <seriesInfo name="DOI" value="10.17487/RFC8499"/>
        </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>
    <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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
C/4vrjU94jsyAQA=

-->

</rfc>
