Home
last modified time | relevance | path

Searched refs:OT_COAP_CODE (Results 1 – 1 of 1) sorted by relevance

/openthread-3.5.0/include/openthread/
Dcoap.h85 #define OT_COAP_CODE(c, d) ((((c)&0x7) << 5) | ((d)&0x1f)) macro
93 OT_COAP_CODE_EMPTY = OT_COAP_CODE(0, 0), ///< Empty message code
94 OT_COAP_CODE_GET = OT_COAP_CODE(0, 1), ///< Get
95 OT_COAP_CODE_POST = OT_COAP_CODE(0, 2), ///< Post
96 OT_COAP_CODE_PUT = OT_COAP_CODE(0, 3), ///< Put
97 OT_COAP_CODE_DELETE = OT_COAP_CODE(0, 4), ///< Delete
99 OT_COAP_CODE_RESPONSE_MIN = OT_COAP_CODE(2, 0), ///< 2.00
100 OT_COAP_CODE_CREATED = OT_COAP_CODE(2, 1), ///< Created
101 OT_COAP_CODE_DELETED = OT_COAP_CODE(2, 2), ///< Deleted
102 OT_COAP_CODE_VALID = OT_COAP_CODE(2, 3), ///< Valid
[all …]