1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

coap: Set COAP_FORMAT_DNS_MESSAGE to 553

Set since draft-ietf-core-dns-over-coap-03
This commit is contained in:
Martine Lenders 2023-10-25 10:57:28 +02:00
parent 410be58f36
commit 63fd5643e4
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -443,6 +443,11 @@ extern "C" {
* @see [Web of Things (WoT) Thing Description 1.1](https://www.w3.org/TR/wot-thing-description11/)
*/
#define COAP_FORMAT_TM_JSON (433)
/**
* @brief Content-Type `application/dns-message`
* @see [draft-ietf-core-dns-over-coap](https://datatracker.ietf.org/doc/draft-ietf-core-dns-over-coap/)
*/
#define COAP_FORMAT_DNS_MESSAGE (553)
/**
* @brief Content-Type `application/voucher-cose+cbor`
* @see [draft-ietf-anima-constrained-voucher](https://datatracker.ietf.org/doc/draft-ietf-anima-constrained-voucher/)
@ -500,7 +505,6 @@ extern "C" {
* @see [RFC 2318](https://www.w3.org/TR/SVG/mimereg.html)
*/
#define COAP_FORMAT_IMAGE_SVG_XML (30000)
#define COAP_FORMAT_DNS_MESSAGE (65053) /**< NON STANDARD! */
/** @} */
/**