1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 07:21:18 +01:00

net/coap: define COAP_PAYLOAD_MARKER

This commit is contained in:
Benjamin Valentin 2024-01-23 13:54:50 +01:00
parent 9949237e5f
commit fdc722f842

View File

@ -535,6 +535,11 @@ typedef enum {
#define COAP_ETAG_LENGTH_MAX (8U) /**< maximum length of the ETag option */
/** @} */
/**
* @brief Marks the boundary between header and payload
*/
#define COAP_PAYLOAD_MARKER (0xFF)
/**
* @defgroup net_coap_conf CoAP compile configurations
* @ingroup net_coap