<?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.14 (Ruby 3.3.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amsuess-core-coap-over-gatt-08" category="std" consensus="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title>CoAP over GATT (Bluetooth Low Energy Generic Attributes)</title>
    <seriesInfo name="Internet-Draft" value="draft-amsuess-core-coap-over-gatt-08"/>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <postal>
          <country>Austria</country>
        </postal>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <date year="2025" month="October" day="21"/>
    <workgroup>CoRE</workgroup>
    <keyword>CoAP, bluetooth, gatt</keyword>
    <abstract>
      <?line 57?>

<t>Interaction from computers and cell phones to constrained devices is limited by the different network technologies used,
and by the available APIs.
This document describes a transport for the Constrained Application Protocol (CoAP) that uses Bluetooth GATT (Generic Attribute Profile)
and its use cases.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Constrained RESTful Environments Working Group mailing list (core@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://gitlab.com/chrysn/coap-over-gatt"/>.</t>
    </note>
  </front>
  <middle>
    <?line 64?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The Constrained Application Protocol (CoAP) <xref target="RFC7252"/> can be used with different network and transport technologies,
for example UDP on 6LoWPAN networks.</t>
      <t>Not all those network technologies are available at end user devices in the vicinity of the constrained devices,
which inhibits direct communication and necessitates the use of gateway devices or cloud services.
In particular, 6LoWPAN is not available at all in typical end user devices,
and while 6LoWPAN-over-BLE (IPSP, the Internet Protocol Support Profile of Bluetooth Low Energy (BLE), <xref target="RFC7668"/>) might be compatible from a radio point of view,
many operating systems or platforms lack support for it,
especially in a user-accessible way.</t>
      <t>As a workaround to access constrained CoAP devices from end user devices,
this document describes a way encapsulate generic CoAP exchanges in Bluetooth GATT (Generic Attribute Profile).
This is explicitly not designed as means of communication between two devices in full control of themselves --
those should rather build an IP based network and transport CoAP as originally specified.
It is intended as a means for an application to escape the limitations of its environment,
with a special focus on web applications that use the Web Bluetooth <xref target="webbluetooth"/>.
In that, it is similar to CoAP-over-WebSockets <xref target="RFC8323"/>.
GATT, which has read and write semantics, is not a perfect match for CoAP's request/response semantics;
this specification bridges the gap in order to make CoAP transportable over what is sometimes the only available protocol.</t>
      <section anchor="application-example">
        <name>Application example</name>
        <t>Consider a network of home automation light bulbs and switches,
which internally uses CoAP on a 6LoWPAN network
and whose basic pairing configuration can be done without additional electronic devices.</t>
        <t>Without CoAP-over-GATT,
an application that offers advanced configuration requires the use of a dedicated gateway device
or a router that is equipped and configured to forward between the 6LoWPAN and the local network.
In practice, this is often delivered as a wired gateway device and a custom app.</t>
        <t>With CoAP-over-GATT,
the light bulbs can advertise themselves via BLE,
and the configuration application can run as a web site.
The user navigates to that web site, and it asks permission to contact the light bulbs using Web Bluetooth.
The web application can then exchange CoAP messages directly with the light bulb,
and have it proxy requests to other devices connected in the 6LoWPAN network.</t>
        <t>For browsers that do not support Web Bluetooth,
the same web application can be packaged into an native application
consisting of a proxy process that forwards requests received via CoAP-over-WebSockets on the loopback interface to CoAP-over-GATT,
and a browser view that runs the original web application in a configuration to use WebSockets rather than CoAP-over-GATT.</t>
        <t>That connection is no replacement when remote control of the system is desired
(in which case, again, a router is required that translates 6LoWPAN to the rest of the network),
but suffices for many commissioning tasks.</t>
      </section>
      <section anchor="alternatives">
        <name>Alternatives</name>
        <t>Several approaches were considered, but considered unsuitable for the intended use cases:</t>
        <ul spacing="normal">
          <li>
            <t>CoAP over 6LoWPAN over BLE (BLE IPSP):
While this is the natural choice for transporting CoAP over BLE,
it is unavailable on typical end user devices.
There is no clear path toward how that would be integrated in platforms like Android or iOS,
and even if it were, creating a network connection to a nearby device from within an application might not be possible (if how WLAN networks are managed is any indication).  </t>
            <t>
[ TBD: Illustrate how easy IPSP is when only working link-local like CoAP-over-GATT does,
see also <eref target="https://gitlab.com/chrysn/coap-over-gatt/-/issues/10">https://gitlab.com/chrysn/coap-over-gatt/-/issues/10</eref>. ]</t>
          </li>
          <li>
            <t>GoldenGate <xref target="goldengate"/>:
This introduces significant network overhead,
and burdens the end user device application with shipping a full network stack
that is executed in a position where it can not integrate fully with the operating system's network stack.  </t>
            <t>
Moreover, this places a retransmission layer on top of a partially reliable transport (GATT),
duplicating effort and possibly aggravating congestion situations.</t>
          </li>
          <li>
            <t>CoAP over UDP over SLIP over GATT UART <xref target="nefzger"/>:
This is similar to the GoldenGate approach,
but built on the GATT UART provided with Nordic Semiconductor's libraries<!-- https://learn.adafruit.com/introducing-adafruit-ble-bluetooth-low-energy-friend/uart-service -->.  </t>
            <t>
This shares the network stack duplication and retransmission concerns of GoldenGate.</t>
          </li>
          <li>
            <t>slipmux <xref target="I-D.bormann-t2trg-slipmux"/> over BLE GATT UART service:
This is similar to the previous item;
the stack duplication concern is addressed,
but retransmissions are still active atop of a service that already provides some reliability.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
    </section>
    <section anchor="protocol-description">
      <name>Protocol description</name>
      <section anchor="gatt-basics">
        <name>Boundary conditions: GATT properties</name>
        <t>[ This section may be shortened in later iterations,
but is kept around while the protocol is being developed
to easily fix mistakes made from wrong assumptions. ]</t>
        <t>CoAP-over-GATT has different properties than UDP transported over the Internet:</t>
        <ul spacing="normal">
          <li>
            <t>Messages sent by one party are received by the other party in the order in which they are sent.
There is no re-ordering.  </t>
            <t>
(There is also a total order on all message exchanged between two peers,
but that property is not useful because it's often not accessible through the Bluetooth stacks.)</t>
          </li>
          <li>
            <t>There is limited reliabiliy built into the protocol.  </t>
            <t>
Data transmissions initiated by the data source can be
unreliable ("write without response", "notify")
or reliable ("write with response", "indicate").  </t>
            <t>
The caveat with their relability is that acknowledgements are sent by the BLE stack,
without consulting with the application.
(This is not only done for simplicity but also for power efficiency:
There is only a short time window in which the data source is listening for confirmations).
Thus, these confirmations can not serve to acknowledge that the a CoAP request contained in the event was read, understood and is being processed.  </t>
            <t>
The reliability mechanisms are still useful, though:
Both "write" and "notify"/"indicate" update the GATT characteristic's state,
and while a slow application may miss data when sent in fast succession,
it is reasonable to expect from the BLE stack to deliver the last data to the application
when no more data is sent.</t>
          </li>
          <li>
            <t>Reads and writes may be subtly confused:
When a characteristic is written to,
and it is read before the BLE server application has had time to interact with its BLE stack,
the written value may be echoed back at read time.  </t>
            <t>
This is likely not problematic when "notify"/"indicate" is used
instead of polling reads,
but it seems prudent to take precautions.</t>
          </li>
        </ul>
      </section>
      <section anchor="requests-and-responses">
        <name>Requests and responses</name>
        <t>CoAP-over-GATT uses a GATT Characteristics to transport requst and response messages.
Similar CoAP-over-UDP it offers both reliable and unreliable transfer and message deduplication,
but as GATT's properties (see <xref target="gatt-basics"/>) differ from UDP's,
it uses a different serialization and a different kind of message IDs.</t>
        <t>Tokens are used like with other CoAP transports,
and allow keeping multiple requests active at the same time.</t>
        <t>A GATT server announces service of UUID 8df804b7-3300-496d-9dfa-f8fb40a236bc (abbreviated US in this document),
with one or more pairs of characteristics of UUID 8bf52767-5625-43ca-a678-70883a366866 (the downstream characteristic, abbreviated UCD)
and ab3720c8-7fc0-41f8-aa2a-9a45c2c01a4b (the upstream characteristic, abbreviated UCU)
through BLE advertisements from a BLE peripheral (typically a constrained device),
which are discovered by a BLE central (typically an end user device).
The server and client roles of CoAP and GATT are independent of each other:
either BLE participant can send requests in a CoAP client role.</t>
        <t>It is expected that as this document matures,
shorter (16 or 32 bit) identifiers will be requested and assigned.
[ See also <eref target="https://gitlab.com/chrysn/coap-over-gatt/-/issues/7">https://gitlab.com/chrysn/coap-over-gatt/-/issues/7</eref>. ]</t>
        <section anchor="message-sub-layer">
          <name>Message sub-layer</name>
          <t>At the UCU/UCD pair of CoAP-over-GATT characteristics, each party maintains a single bit Message ID (initialized at 1 when a connection is created),
and the last Message ID sent by the peer (initialized at 0 when a connection is created).</t>
          <t>Messages are serialized as GATT values.
The GATT client sends a message by writing it to UCD (reliably using the "write with response" or unreliably using "write without response" operation);
the GATT server sends them reliably using an "indicate" or unreliably "notify" event on UCU.
The serialization format is the same for all, and illustrated in <xref target="fig-message"/>:</t>
          <figure anchor="fig-message">
            <name>Components of a message</name>
            <artwork><![CDATA[
0   1   2   3   4       8       16      varying
+---+---+---+---+-------+-------+-------+---------+----+---------+
| R | M | C | A |  TKL  |  Code | Token | Options | ff | Payload |
+---+---+---+---+-------+-------+-------+---------+----+---------+
]]></artwork>
          </figure>
          <ul spacing="normal">
            <li>
              <t>a single message description byte,
compose of 4 bits R (reserved), M (Message ID), C (Confirm) and A (Acknowledge ID),
followed by 4 bits of token length (TKL).</t>
            </li>
            <li>
              <t>Code, token, options, payload marker and payload as in <xref target="RFC7252"/>.  </t>
              <t>
Unlike there, there is no 16-bit Message ID field
(a similar role is taken by bits M and A),
and in empty messages,
the code is not sent.</t>
            </li>
          </ul>
          <t>The bits are set as follows:</t>
          <ul spacing="normal">
            <li>
              <t>The R bit is reserved for future extensions;
it MUST be written as 0,
and when a value of 1 is written,
the whole written value MUST be ignored.</t>
            </li>
            <li>
              <t>The Message ID bit is always set to the current Message ID of the sender.</t>
            </li>
            <li>
              <t>The Confirm bit is set if the sender asks the peer to acknowledge that the message has been noted.</t>
            </li>
            <li>
              <t>The Acknowledge ID is always set to the peer's last sent Message ID that had the Confirm bit set.</t>
            </li>
          </ul>
          <t>When receiving a message with the C bit set,
the recipient MUST eventually send a response message with radio reliability.</t>
        </section>
        <section anchor="minimal-use-of-the-message-sub-layer">
          <name>Minimal use of the message sub-layer</name>
          <t>Unless an implementation sends fast bursts of updates or large quantities of data
and tunes for their througput,
it can use a simple subset of the message sub-layer functionality
and still interoperate with any peer.</t>
          <t>Such an application needs to</t>
          <ul spacing="normal">
            <li>
              <t>always send reliably (i.e., use Write with Response and Inform)</t>
            </li>
            <li>
              <t>set the Message ID to 0 on the first message it sends,</t>
            </li>
            <li>
              <t>set the Confirm bit on every non-empty message it sends
(and leaves it unset on empty messages),</t>
            </li>
            <li>
              <t>wait for the peer to send a message with Acknowledge matching the last Message ID it sent
before sending another non-empty message, and</t>
            </li>
            <li>
              <t>always send an acknowledgement right after receiving a non-empty message with the Confirm bit set.</t>
            </li>
          </ul>
          <t>This way,
there is no need to keep track of whether the Confirm bit is strictly necessary,
and whether more messages may be sent with the same message ID.</t>
        </section>
        <section anchor="using-the-message-sub-layer">
          <name>Using the message sub-layer</name>
          <t>[ This section reflects ongoing experimentation with the above serialization format and rules.
Senders may use other patterns as long as they do not stall their peer by not sending any messages after the Confirm bit was set. ]</t>
          <t>To send a message unreliably in terms of CoAP transmission,
a sender sets its latest Message ID in the M bit, sets C to 0, and populates the remaining bits per the rules above.
It then sends the message unreliably on the radio
(it may be sent reliably, especially when the peer set the C bit before).
After a CoAP-unreliable message, the sender may send more CoAP-unreliable messages.
It should avoid sending multiple messages in the same connection event
(because the peer's BLE stack would be likely to not pass on the earlier message).</t>
          <t>To send a message reliably in terms of CoAP transmission,
a sender sets its latest Message ID in the M bit, sets C to 1, and populates the remaining bits per the rules above.
It then sends the message reliably on the radio
(it may send unreliably if a message is expected from the peer soon, but then needs to be prepared to send the same message again).
After sending that message,
the sender does not send any other message until a message is received with A equal to the sent message's M bit.
The sender may need to send the very same message again if no earlier transmission of the message happened reliably.
[ Do we need to give timing guidance here? Probably not, because it only happens if there is some expectation in the first place. ]
The sender may cancel the transmission by sending an empty message with the same M and C bits,
or by sending different message with these bits (which are then all unreliable transmissions).</t>
          <t>When receiving a message with the C bit set,
it is up to the recipient when to send the radio-reliable message.
If it is expected that a radio-reliable message will be sent soon,
it is permissible and useful to send unrelated unreliable messages that already account for the set C bit in their A bit.</t>
        </section>
        <section anchor="message-deduplication">
          <name>Message deduplication</name>
          <t>CoAP-over-GATT participants MUST ignore a message arriving at a characteristic
if it is identical to the one received previously in the same connection.
(The first message is never ignored).</t>
          <t>Recipients MAY limit deduplication to the message up to and including the token.
This has no practical impact on reliable transmission:
If a sender desires one precise message to be sent, it will increment M, set C,
and not send another message until A has matched M.</t>
          <t>Note that it is not possible to send two identical consecutive messages unreliably.
When sending identical requests, the sender may vary the token.
Sending identical responses generally is rarely significant, even with the generalized <xref target="I-D.bormann-core-responses"/>,
because the mechanism to make responses "non-matching" in that document's terminology typically incurs variation.
When it does not, but the repetition is still significant, sending the messages reliably becomes necessary.</t>
        </section>
        <section anchor="requests-and-responses-1">
          <name>Requests and responses</name>
          <t>CoAP requests and responses are built on the message sub-layer
as they are in <xref target="RFC7252"/>:
requests are sent with a token chosen by the CoAP client,
and the CoAP server sends a response with the same token.</t>
          <t>Responses and message-layer acknowledgments can happen in the same message.
Unlike in <xref target="RFC7252"/>, there is no association between a request and its message ID:
Any message may serve as an acknowledgement;
it is always only the token that matches requests to responses.</t>
        </section>
        <section anchor="fragmentation">
          <name>Fragmentation</name>
          <t>Attribute values are limited to 512 Bytes (<xref target="bluetooth52"/> Part F Section 3.2.9),
practically limiting blockwise operation (<xref target="RFC7959"/>) to size exponents to 4 (resulting in a block size of 256 byte).
Even smaller messages might enhance the transfer efficiency
when they avoid fragmentation at the L2CAP level. [ TBD: Verify: ]</t>
        </section>
        <section anchor="multiple-characteristics">
          <name>Multiple characteristics</name>
          <t>If a server provides multiple UCU and UCD typed characteristics,
they form pairs in the sequence in which they are listed.
By using them in parallel,
multiple messages can be sent without waiting for individual confirmation.
This is similar to using RFC7252 with NSTART &gt; 1,
and may be used by the GATT client if the GATT server lists multiple pairs of UCU/UCD characteristics.
The GATT server can send messages only through UCU characteristics on which the GATT client enabled "indicate" or "notify";
if the GATT client does not support multiple characteristics,
it will just pick any pair, and only enable them on the pair's UCU.</t>
          <t>Each characteristic has its independent message ID bits.
All characteristics of a service share a single token space,
and responses need not necessarily be sent on the characteristic the request was sent on.</t>
          <t>The use of muliple characteristics is primarily practical
when large amounts of data are to be transferred,
or when low-latency notifications are required while simultaneously sending reliable messages.
These transfers can utilize much of BLE's bandwidth
because they make it easy to send much data within a single BLE connection event.</t>
          <t>Implementers are encouraged to benchmark their applications
and show that their throughput is limited by the number of characteristics used
before supporting multiple characteristics.</t>
        </section>
        <section anchor="communication-example">
          <name>Communication example</name>
          <t>The example illustrated in <xref target="fig-communication"/>
shows an observation request
with reliable and unreliable responses.
It chooses the most typical configuration
where the GATT server is also the BLE peripheral
(and thus sends avertisements).
The GATT client is also the CoAP client here.</t>
          <figure anchor="fig-communication">
            <name>Example message flow</name>
            <artwork><![CDATA[
    GATT server                          GATT client

  Send BLE advertisement with one UCU and one UCD ---------->

(Pairing in Just-Works mode and discovery not illustrated)

  <----- Write+Resp. M=1 C=1 A=0 T="01" GET /temp, Observe: 0

(The server sends temperature values unreliably for some time)

  Notify M=1 C=0 A=1 T="01" 2.05 Content, Obs: 1, "22°C" --->

  Notify M=1 C=0 A=1 T="01" 2.05 Content, Obs: 2, "21°C" --->

  <----- Write+Resp. M=0 C=1 A=0 T="02" GET /model

  Indicate M=1 C=1 A=0 T="02" 2.05 Content, "ExampleScan" -->

  <----- Write+Resp. M=0 C=0 A=1 empty

  Notify M=0 C=0 A=0 T="01" 2.05 Content, Obs: 3, "20°C" --->

(At this point, the temperature isn't changing for some time,
and the server sends a reliable notification)

  Indicate M=0 C=1 A=0 T="01" 2.05 Content, Obs: 4, "20°C" ->

  <----- Write+Resp. M=0 C=0 A=0 empty
]]></artwork>
          </figure>
        </section>
      </section>
      <section anchor="addresses">
        <name>Addresses</name>
        <t>The URI scheme associated with CoAP over GATT is "coap"
as per the recommendation of <xref section="6" sectionFormat="of" target="I-D.ietf-core-transport-indication"/>.
The default value of Uri-Host is the MAC address of the CoAP server,
in hexadecimal encoding, followed by <tt>.ble.arpa</tt>.
<cref anchor="arpa-alt">The use of <tt>.ble.alt</tt> as defined in <xref target="RFC9476"/> was considered instead of <tt>.ble.arpa</tt>, but rejected for lack of management of its subdomains. Language from the <tt>.alt</tt> specification may be used when it comes to describing how this is not disturbing DNS operations.</cref></t>
        <t>User information and port are always absent with this scheme.</t>
        <t>Assembling the URI of a request for the discovery resource of a BLE device with the MAC address 00:11:22:33:44:55 would thus be assembled, under the rules of <xref section="6.4" sectionFormat="of" target="RFC7252"/>, to <tt>coap://001122334455.ble.arpa/.well-known/core</tt>.</t>
        <t>These addresses do not convey a particular version of CoAP-over-GATT
(or, more generally, scheme of transporting CoAP over other Bluetooth mechanisms):
When the referenced device is found, Bluetooth's discovery mechanisms are used,
and discovering the service US indicates availability of CoAP-over-GATT as specified in this document.</t>
        <t>Locally defined host or service name registries may be used to create names
that are more suitable for human interaction.
For DNS, which is widely used for this purpose,
no record types are registered that map to Bluetooth MAC addresses at the time of writing.</t>
        <t>Note that on some platforms (e.g. Web Bluetooth <xref target="webbluetooth"/>),
the peer's or the own address may not be known application.
They may come up with an application-internal registered name component
(e. g. <tt>coap://id-SomeInternalIdentifier.alt/.well-known/core</tt>,
in this case using the <tt>.alt</tt> zone from <xref target="RFC9476"/>),
but must be aware that those can not be expressed towards anything outside the local stack --
the same way they would avoid using IPv6 zone identifiers or URIs whose host name is <tt>localhost</tt>.</t>
        <section anchor="use-with-persistent-addresses">
          <name>Use with persistent addresses</name>
          <t>When services are meant to provide long-lived and universally usable URIs,
addresses based on MAC addresses can be impractical,
because they fluctuate on hardware changes.
(Moreover, privacy mechanisms on the device or the platform can render them unusable even before hardware changes).</t>
          <t>In the absence of a usable host or service name registry,
implementers may opt for non-GATT addresses right away.
<xref section="2.4.1" sectionFormat="of" target="I-D.ietf-core-transport-indication"/> provides the means to advertise a different canonical address,
and to announce availability of that advertised service on the present transport.</t>
          <t>When long-lived addresses circumvent privacy preserving measures,
considerations concering the tracking of devices [ are TBD along the lines of "don't make it discoverable to unauthorized sources, and in case of doubt let the peer show its credentials first" ].</t>
        </section>
      </section>
    </section>
    <section anchor="further-development">
      <name>Further development</name>
      <section anchor="compression-and-reinterpretation-of-non-coap-characteristics">
        <name>Compression and reinterpretation of non-CoAP characteristics</name>
        <t>The use of SCHC is being evaluated in combination with CoAP-over-GATT;
the device can use the characteristic UUID to announce the static context used.</t>
        <t>Together with non-traditional response forms (<xref target="I-D.bormann-core-responses"/>
and contexts that expand, say, a numeric value 0x1234 to a message like</t>
        <artwork><![CDATA[
2.05 Content
Response-For: GET /temperature
Content-Format: application/senml+cbor
Payload (in JSON-ish equivalent):
[
    {1 /* unit */: "K", 2 /* value */: 0x1234}
]
]]></artwork>
        <t>This enables a different use case than dealing with limited environments:
Accessing BLE devices via CoAP without application specific gateways.
Any required information about the application can be expressed in the SCHC context.</t>
      </section>
      <section anchor="additional-use-of-advertisements">
        <name>Additional use of advertisements</name>
        <t>In the current specification,
advertisements are used to indicate that CoAP-over-GATT is being used.</t>
        <t>Possible extensions include:</t>
        <ul spacing="normal">
          <li>
            <t>Additional data can be used to identify the device.  </t>
            <t>
Suitable fields are Service Data (currently unavailable in the Web Bluetooth implementation)
and Manufacturer Data (requires a registered Company Identifier of a SIG member; available in the Web Bluetooth implementation).  </t>
            <t>
Those can allow quick selection of a device to contact
even when selection by MAC address is unavailable (as are .  </t>
            <t>
These identifiers can also form a suitable host component
through a manufacturer specific (Manufacturer Data)
or to-be-defined (Service Data) mechanism.  </t>
            <t>
Service Data is currently not a practical attribute,
both because it is not implemented in any web browser,
and because it practically requires a 16-bit UUID as the US (otherwise it exceeds available space).</t>
          </li>
          <li>
            <t>Some resource metadata might already be transported in advertisements.  </t>
            <t>
These would need to be compact (in the order of magnitude of 10 bytes or less),
and could contain data otherwise only discovered by querying the .well-known/core resource,
or (hashes of) AS and audience values for ACE
to facilitate connection creation with a device known by its managed identity.</t>
          </li>
          <li>
            <t>Advertisements could contain broadcast CoAP messages.  </t>
            <t>
Given that these non-traditional responses can not have embedded requests (as defined in <xref target="I-D.bormann-core-responses"/>) due to size contraints,
a mechanism such as <xref target="I-D.ietf-core-observe-multicast-notifications"/> could be used to distribute some consensus request:
Devices would learn that there is a consensus multicast request,
and convey any response by sending BLE advertisements.  </t>
            <t>
In some cases,
a consensus request may be global:
For example,
devices willing to participate in an <xref target="I-D.ietf-lake-authz"/> mediated enrollment
would respond to a conensus request that is an empty POST to their /.well-known/edhoc resource.
A field in an advertisement "responding" to that may then contain an EDHOC message 1,
and receivers can attempt to process it without further radio traffic,
only establishing a GATT connection upon success.
The kind of request that elicited that response, as well as possibly some constant prefix
(fixed method or suites)
is encoded in the type of field (possibly a dedicated service with own service data).</t>
          </li>
        </ul>
      </section>
      <section anchor="protocol-details">
        <name>Protocol details</name>
        <ul spacing="normal">
          <li>
            <t>Is there any good reason to allow read operations?  </t>
            <t>
A GATT client that is waiting for a Confirm bit to be acknowledged might attempt a Read
(for the case that the confirmation arrived in an unreliable message),
but might just as well perform the last write again.  </t>
            <t>
Reading would be more efficient (because it can happen without application intervention, and no data is sent),
but the added complexity might not be worth the enhancements.</t>
          </li>
          <li>
            <t>Fragmentation.
If the current approach of requiring devices to support large MTU sizes turns out to be impractical,
or if GATT level fragmentation vastly outperforms CoAP fragmentation,
it may be necessary to use composite reads and writes on GATT.  </t>
            <t>
Care has to be taken to use only operations supported by <xref target="webbluetooth"/>: that API does not expose reads with offsets.  </t>
            <t>
Offset based fragmentation may also be incompatible with the write-with-response approach suggested for reliability.</t>
          </li>
          <li>
            <t>Usability from WebBluetooth  </t>
            <t>
WebBluetooth clients may be unaware that two protocol instances
are running between the client and the server at the same time,
without any indication on the BLE side.  </t>
            <t>
Is there anything this protocol can do to help the clients discover
(or even resolve) the situation?  </t>
            <t>
See also <eref target="https://gitlab.com/chrysn/coap-over-gatt/-/issues/9">https://gitlab.com/chrysn/coap-over-gatt/-/issues/9</eref>.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA considerations</name>
      <section anchor="blearpa">
        <name>ble.arpa</name>
        <t>IANA is asked to create two new reserved domain names in the .arpa name space as described in <xref target="rfc6761"/>:
the suffixes <tt>.ble.arpa</tt>.</t>
        <t>The expectation for Application Software are
that no DNS resolution is attempted;
instead, the hexadecimal prefix is processed into a 6-byte binary address,
and any operation on that address is pointed to the Bluetooth Low Energy device
with the indicated MAC address.</t>
        <t>The Domain Reservation Considerations from <xref section="5" sectionFormat="of" target="RFC6761"/> for both domains are:</t>
        <ul spacing="normal">
          <li>
            <t>Users:
Users are not expected to recognize those names as special, merely as distinct from other names.</t>
          </li>
          <li>
            <t>Application Software:
Writers of application software are expected to pass them on to their CoAP implementation.
CoAP implementations are expected to recognize them as Bluetooth addresses,
and use their Bluetooth addresses
and MUST NOT pass them on to DNS based resolvers
(unless the API resolver happens to explicitly support resolution into BLE addresses, see below).</t>
          </li>
          <li>
            <t>Name resolution APIs and libraries:
Name resolution APIs and libraries MAY indicate that .ble.arpa names resolve to the BLE MAC address literals encoded inside them
(but no details for this are specified in known resolution APIs or libraries).
Otherwise, they SHOULD report them as NXDOMAIN.</t>
          </li>
          <li>
            <t>Caching DNS Servers:
Caching DNS servers MAY recognize the special domains and report them as NXDOMAIN.
Otherwise, they will cache the .arpa DNS servers' responses.</t>
          </li>
          <li>
            <t>Authoritative DNS Servers:
Authoritative DNS servers MAY recognize the special domains and report them as NXDOMAIN.
Otherwise, they will cache the .arpa DNS servers' responses.</t>
          </li>
          <li>
            <t>DNS Server Operators:
No impact on DNS server operators is expected.</t>
          </li>
          <li>
            <t>DNS Registries/Registrars:
Any changes to .ble.arpa or .ble-sd.arpa go through updates to this document and IANA.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security considerations</name>
      <t>All data received over GATT is considered untrusted;
secure communication can be achieved using OSCORE <xref target="RFC8613"/>.</t>
      <t>Physical proximity can not be inferred from this means of communication.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <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="RFC7595">
          <front>
            <title>Guidelines and Registration Procedures for URI Schemes</title>
            <author fullname="D. Thaler" initials="D." role="editor" surname="Thaler"/>
            <author fullname="T. Hansen" initials="T." surname="Hansen"/>
            <author fullname="T. Hardie" initials="T." surname="Hardie"/>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes. It obsoletes RFC 4395.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="35"/>
          <seriesInfo name="RFC" value="7595"/>
          <seriesInfo name="DOI" value="10.17487/RFC7595"/>
        </reference>
        <reference anchor="rfc6761">
          <front>
            <title>Special-Use Domain Names</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes what it means to say that a Domain Name (DNS name) is reserved for special use, when reserving such a name is appropriate, and the procedure for doing so. It establishes an IANA registry for such domain names, and seeds it with entries for some of the already established special domain names.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6761"/>
          <seriesInfo name="DOI" value="10.17487/RFC6761"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC7668">
          <front>
            <title>IPv6 over BLUETOOTH(R) Low Energy</title>
            <author fullname="J. Nieminen" initials="J." surname="Nieminen"/>
            <author fullname="T. Savolainen" initials="T." surname="Savolainen"/>
            <author fullname="M. Isomaki" initials="M." surname="Isomaki"/>
            <author fullname="B. Patil" initials="B." surname="Patil"/>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
            <author fullname="C. Gomez" initials="C." surname="Gomez"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>Bluetooth Smart is the brand name for the Bluetooth low energy feature in the Bluetooth specification defined by the Bluetooth Special Interest Group. The standard Bluetooth radio has been widely implemented and available in mobile phones, notebook computers, audio headsets, and many other devices. The low-power version of Bluetooth is a specification that enables the use of this air interface with devices such as sensors, smart meters, appliances, etc. The low-power variant of Bluetooth has been standardized since revision 4.0 of the Bluetooth specifications, although version 4.1 or newer is required for IPv6. This document describes how IPv6 is transported over Bluetooth low energy using IPv6 over Low-power Wireless Personal Area Network (6LoWPAN) techniques.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7668"/>
          <seriesInfo name="DOI" value="10.17487/RFC7668"/>
        </reference>
        <reference anchor="webbluetooth" target="https://webbluetoothcg.github.io/web-bluetooth/">
          <front>
            <title>Web Bluetooth</title>
            <author initials="R." surname="Grant">
              <organization/>
            </author>
            <author initials="O." surname="Ruiz-Henríquez">
              <organization/>
            </author>
            <date year="2020" month="February" day="24"/>
          </front>
        </reference>
        <reference anchor="goldengate" target="https://fitbit.github.io/golden-gate/">
          <front>
            <title>Golden Gate</title>
            <author initials="" surname="Fitbit, Inc">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="nefzger" target="https://www.maibornwolff.de/en/blog/talk-coap-me-iot-over-bluetooth-low-energy">
          <front>
            <title>Talk CoAP to me – IoT over Bluetooth Low Energy</title>
            <author initials="" surname="Matthias Nefzger">
              <organization/>
            </author>
            <date year="2021" month="March" day="01"/>
          </front>
        </reference>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="S. Lemay" initials="S." surname="Lemay"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="K. Hartke" initials="K." surname="Hartke"/>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan"/>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor"/>
            <date month="February" year="2018"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP), although inspired by HTTP, was designed to use UDP instead of TCP. The message layer of CoAP over UDP includes support for reliable delivery, simple congestion control, and flow control.</t>
              <t>Some environments benefit from the availability of CoAP carried over reliable transports such as TCP or Transport Layer Security (TLS). This document outlines the changes required to use CoAP over TCP, TLS, and WebSockets transports. It also formally updates RFC 7641 for use with these transports and RFC 7959 to enable the use of larger messages over a reliable transport.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8323"/>
          <seriesInfo name="DOI" value="10.17487/RFC8323"/>
        </reference>
        <reference anchor="RFC8613">
          <front>
            <title>Object Security for Constrained RESTful Environments (OSCORE)</title>
            <author fullname="G. Selander" initials="G." surname="Selander"/>
            <author fullname="J. Mattsson" initials="J." surname="Mattsson"/>
            <author fullname="F. Palombini" initials="F." surname="Palombini"/>
            <author fullname="L. Seitz" initials="L." surname="Seitz"/>
            <date month="July" year="2019"/>
            <abstract>
              <t>This document defines Object Security for Constrained RESTful Environments (OSCORE), a method for application-layer protection of the Constrained Application Protocol (CoAP), using CBOR Object Signing and Encryption (COSE). OSCORE provides end-to-end protection between endpoints communicating using CoAP or CoAP-mappable HTTP. OSCORE is designed for constrained nodes and networks supporting a range of proxy operations, including translation between different transport protocols.</t>
              <t>Although an optional functionality of CoAP, OSCORE alters CoAP options processing and IANA registration. Therefore, this document updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8613"/>
          <seriesInfo name="DOI" value="10.17487/RFC8613"/>
        </reference>
        <reference anchor="RFC7959">
          <front>
            <title>Block-Wise Transfers in the Constrained Application Protocol (CoAP)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <author fullname="Z. Shelby" initials="Z." role="editor" surname="Shelby"/>
            <date month="August" year="2016"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a RESTful transfer protocol for constrained nodes and networks. Basic CoAP messages work well for small payloads from sensors and actuators; however, applications will need to transfer larger payloads occasionally -- for instance, for firmware updates. In contrast to HTTP, where TCP does the grunt work of segmenting and resequencing, CoAP is based on datagram transports such as UDP or Datagram Transport Layer Security (DTLS). These transports only offer fragmentation, which is even more problematic in constrained nodes and networks, limiting the maximum size of resource representations that can practically be transferred.</t>
              <t>Instead of relying on IP fragmentation, this specification extends basic CoAP with a pair of "Block" options for transferring multiple blocks of information from a resource representation in multiple request-response pairs. In many important cases, the Block options enable a server to be truly stateless: the server can handle each block transfer separately, with no need for a connection setup or other server-side memory of previous block transfers. Essentially, the Block options provide a minimal way to transfer larger representations in a block-wise fashion.</t>
              <t>A CoAP implementation that does not support these options generally is limited in the size of the representations that can be exchanged, so there is an expectation that the Block options will be widely used in CoAP implementations. Therefore, this specification updates RFC 7252.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7959"/>
          <seriesInfo name="DOI" value="10.17487/RFC7959"/>
        </reference>
        <reference anchor="bluetooth52" target="https://www.bluetooth.org/docman/handlers/downloaddoc.ashx?doc_id=478726">
          <front>
            <title>Bluetooth Core Specification v5.2</title>
            <author>
              <organization/>
            </author>
            <date year="2019" month="December" day="31"/>
          </front>
        </reference>
        <reference anchor="I-D.bormann-t2trg-slipmux">
          <front>
            <title>Slipmux: Using an UART interface for diagnostics, configuration, and packet transfer</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universitaet Bremen TZI</organization>
            </author>
            <author fullname="Tobias Kaupat" initials="T." surname="Kaupat">
              <organization>Lobaro UG</organization>
            </author>
            <date day="4" month="November" year="2019"/>
            <abstract>
              <t>   Many research and maker platforms for Internet of Things
   experimentation offer a serial interface.  This is often used for
   programming, diagnostic output, as well as a crude command interface
   ("AT interface").  Alternatively, it is often used with SLIP
   (RFC1055) to transfer IP packets only.

   The present report describes how to use a single serial interface for
   diagnostics, configuration commands and state readback, as well as
   packet transfer.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-t2trg-slipmux-03"/>
        </reference>
        <reference anchor="I-D.bormann-core-responses">
          <front>
            <title>CoAP: Non-traditional response forms</title>
            <author fullname="Carsten Bormann" initials="C." surname="Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   In CoAP as defined by RFC 7252, responses are always unicast back to
   a client that posed a request.  The present memo describes two forms
   of responses that go beyond that model.

   The design spaces for the new CoAP Options proposed to represent
   these responses are now sufficiently understood that they can be
   developed to standards-track specifications, either in this document
   or by transferring the specification for an Option to a document that
   that Option closely works with.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bormann-core-responses-06"/>
        </reference>
        <reference anchor="I-D.ietf-core-transport-indication">
          <front>
            <title>CoAP Transport Indication</title>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Martine Sophie Lenders" initials="M. S." surname="Lenders">
              <organization>TUD Dresden University of Technology</organization>
            </author>
            <date day="7" month="July" year="2025"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP, [RFC7252]) is available
   over different transports (UDP, DTLS, TCP, TLS, WebSockets), but
   lacks a way to unify these addresses.  This document provides
   terminology and provisions based on Web Linking [RFC8288] and Service
   Bindings (SVCB, [RFC9460]) to express alternative transports
   available to a device, and to optimize exchanges using these.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-transport-indication-09"/>
        </reference>
        <reference anchor="RFC9476">
          <front>
            <title>The .alt Special-Use Top-Level Domain</title>
            <author fullname="W. Kumari" initials="W." surname="Kumari"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="September" year="2023"/>
            <abstract>
              <t>This document reserves a Top-Level Domain (TLD) label "alt" to be used in non-DNS contexts. It also provides advice and guidance to developers creating alternative namespaces.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9476"/>
          <seriesInfo name="DOI" value="10.17487/RFC9476"/>
        </reference>
        <reference anchor="I-D.ietf-core-observe-multicast-notifications">
          <front>
            <title>Observe Notifications as CoAP Multicast Responses</title>
            <author fullname="Marco Tiloca" initials="M." surname="Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Rikard Höglund" initials="R." surname="Höglund">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsüss" initials="C." surname="Amsüss">
         </author>
            <author fullname="Francesca Palombini" initials="F." surname="Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP) allows clients to
   "observe" resources at a server and to receive notifications as
   unicast responses upon changes of the resource state.  In some use
   cases, such as based on publish-subscribe, it would be convenient for
   the server to send a single notification addressed to all the clients
   observing the same target resource.  This document updates RFC7252
   and RFC7641, and defines how a server sends observe notifications as
   response messages over multicast, synchronizing all the observers of
   the same resource on the same shared Token value.  Besides, this
   document defines how the security protocol Group Object Security for
   Constrained RESTful Environments (Group OSCORE) can be used to
   protect multicast notifications end-to-end between the server and the
   observer clients.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-observe-multicast-notifications-13"/>
        </reference>
        <reference anchor="I-D.ietf-lake-authz">
          <front>
            <title>Lightweight Authorization using Ephemeral Diffie-Hellman Over COSE (ELA)</title>
            <author fullname="Göran Selander" initials="G." surname="Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson" initials="J. P." surname="Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Mališa Vučinić" initials="M." surname="Vučinić">
              <organization>INRIA</organization>
            </author>
            <author fullname="Geovane Fedrecheski" initials="G." surname="Fedrecheski">
              <organization>INRIA</organization>
            </author>
            <author fullname="Michael Richardson" initials="M." surname="Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <date day="7" month="July" year="2025"/>
            <abstract>
              <t>   Ephemeral Diffie-Hellman Over COSE (EDHOC) is a lightweight
   authenticated key exchange protocol intended for use in constrained
   scenarios.  This document specifies Lightweight Authorization using
   EDHOC (ELA).  The procedure allows authorizing enrollment of new
   devices using the extension point defined in EDHOC.  ELA is
   applicable to zero-touch onboarding of new devices to a constrained
   network leveraging trust anchors installed at manufacture time.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lake-authz-05"/>
        </reference>
        <reference anchor="RFC6761">
          <front>
            <title>Special-Use Domain Names</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire"/>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal"/>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes what it means to say that a Domain Name (DNS name) is reserved for special use, when reserving such a name is appropriate, and the procedure for doing so. It establishes an IANA registry for such domain names, and seeds it with entries for some of the already established special domain names.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6761"/>
          <seriesInfo name="DOI" value="10.17487/RFC6761"/>
        </reference>
      </references>
    </references>
    <?line 615?>

<section anchor="change-log">
      <name>Change log</name>
      <t>Since -07:</t>
      <ul spacing="normal">
        <li>
          <t>Removed ble-sd.arpa and demoted other Service Data use.  </t>
          <t>
Service Data is currently not available in Web Bluetooth implementations.</t>
        </li>
        <li>
          <t>Limited message deduplication to the header.  </t>
          <t>
This makes the protocol implementable on constrained devices without a doubled buffer.</t>
        </li>
        <li>
          <t>Small additions around multiple characteristics and discovery interaction with addressing.</t>
        </li>
      </ul>
      <t>Since -06:</t>
      <ul spacing="normal">
        <li>
          <t>Sketch usage example with EDHOC message 1 in beacons.</t>
        </li>
        <li>
          <t>Restructured to group "further development" points together.</t>
        </li>
        <li>
          <t>Discourage multi-characteristic operation unless necessary.</t>
        </li>
        <li>
          <t>Minor clarifications.</t>
        </li>
      </ul>
      <t>Since -05:</t>
      <ul spacing="normal">
        <li>
          <t>Use <tt>coap://${MAC}.ble.arpa</tt> instead of <tt>coap+gatt://</tt>.</t>
        </li>
        <li>
          <t>Apply template to IANA considerations.</t>
        </li>
      </ul>
      <t>Since -04:</t>
      <ul spacing="normal">
        <li>
          <t>Point out .arpa / .alt considerations.</t>
        </li>
      </ul>
      <t>Since -03:</t>
      <ul spacing="normal">
        <li>
          <t>Define semantics of service data field, define ble-sd.arpa for that purpose.</t>
        </li>
        <li>
          <t>Switch to .arpa names for MAC addresses for consistency with service data names.</t>
        </li>
        <li>
          <t>Use one characteristic per data direction. This  </t>
          <ul spacing="normal">
            <li>
              <t>simplifies implementations on platforms with little control over change
events,</t>
            </li>
            <li>
              <t>removes the necessity to process the R bit, and</t>
            </li>
            <li>
              <t>frees up that bit in messages.</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Add communication example.</t>
        </li>
        <li>
          <t>Reference more open issues, including intention to get shorter IDs.</t>
        </li>
      </ul>
      <t>Since -02:</t>
      <ul spacing="normal">
        <li>
          <t>Message format extended by a leading byte, the option to have a token.
This enables role reversal and concurrent requests.</t>
        </li>
        <li>
          <t>The UC identifier was changed to reflect the incompatible change in protocol.</t>
        </li>
        <li>
          <t>A section on used BLE properties was added.</t>
        </li>
        <li>
          <t>A section providing outlook on other data for advertisements was added.</t>
        </li>
      </ul>
      <t>Since -01:</t>
      <ul spacing="normal">
        <li>
          <t>Point out (possibly conflicting) development directions.</t>
        </li>
        <li>
          <t>Describe URI scheme more completely, including persistent addresses.</t>
        </li>
        <li>
          <t>Aim for standards track.</t>
        </li>
        <li>
          <t>Describe rejeced alternative approaches.</t>
        </li>
      </ul>
      <t>Since -00:</t>
      <ul spacing="normal">
        <li>
          <t>Add note on SCHC possibilities.</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA81965IbR5be/3qK2pYj1NAA6CubJDTSuNVNSb3LW7Cblh0z
41WiKgHUdqEKU5cGIU5P+B38HI7wA/iX9038JD7fOSezsgCQ0tgbDk8MRXaj
KvPkyXO/YTQaRU3W5HYSH1yVl2/j8sFW8Q+Xd3fx4Xd5a5uybBbxy3Idvyhs
Nd/EP1j6O0viy6apsmnb2HpwEKVlUpglrZFWZtaMzLJubV2PkrKy9B+zGmHV
0dw0zej4WZStqkncVG3dnB4fPz8+jerGFOk/m7wsLH9go8Q0k7hu0mg9n8RX
5bsX0f0a/7h8O4ynDqxhjBUj0zaLsppEozgranpoHF8u63/9H3UdxbFAdbWo
srrJTBF8kpRt0VSbSXxJcFSZoV/ZpcnySZy4p/+9nmOclMuoKKulabIHO6En
331/9fT0yan755PnTyZRVsy2H7m4eIZ/ru3Uw4yf41gx/pOdxh7J/IE7S8z/
G+nfsZzs3Tj+oTJFs//TN+P4XZv9MvrRFtW//re/tPYX/jw1De10enx6PDo+
HZ2e8y8FUrfNj3evXk7iRdOs6snRUQhtMh/Ps2bRTsdZiQ9G/pMjende5qkt
5tggPNUP/Ov4B/r9r5/p+6yZZs0wvimS8Ra8vwrpjN8NIBSAQGcW8BV29svc
Vj3g7kx+z3QUN2W8tPH/+i//Nb4p74Ts9xH8rx/hFRHhIjN1/Fr26x/jZHR8
Njo++XW0r9djor9pWRXrMp/Nxqk9ssXRNC/nRw0BLXy0tKOsbISd/F2M8nI9
sg5aIrxnZ6dnSoPPLk7cP58+f/J8izL9EkLLHksdIq6IhePblU2yWUZMmZVF
/PBkfNo748nz0cnp6GzfGd9ef98/ot9xXFbzI5IbS1McLYj9c1vV9PO6yEuT
0u/Hpl58+AP945+z9Jvzp8+enl5E9L/RaBSbKXGsSZoouikai38BrFlVLomr
lyuSSVUd05JxYvM8Xi1IrNS47qQs8GJW2DRO7UOW0K+zOs6zZdbQr6abuFnY
OM1mM1vZoiH6adZldR83NlkUJV1ERi+0tU2HEVbX580DSQ0zzW18+famHkd3
C1qT4G6XWCO1dUJykl40JNlMUa/KqgGS+N2rAKLL1Sp3KH5blU2ZlHl8CFId
0LOmwc51cDMio3fEMd6dZbkdMIxZwxDHiaGXx4K+ZZYStqPoC2K6pirTVvD3
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

-->

</rfc>
