libcoap 4.3.4-develop-9f1418e
coap_pdu.h
Go to the documentation of this file.
1/*
2 * coap_pdu.h -- CoAP message structure
3 *
4 * Copyright (C) 2010-2014 Olaf Bergmann <bergmann@tzi.org>
5 * Copyright (C) 2021-2024 Jon Shallow <supjps-libcoap@jpshallow.com>
6 *
7 * SPDX-License-Identifier: BSD-2-Clause
8 *
9 * This file is part of the CoAP library libcoap. Please see README for terms
10 * of use.
11 */
12
18#ifndef COAP_PDU_H_
19#define COAP_PDU_H_
20
21#include "coap_option.h"
22#include "coap_uri.h"
23
24#ifdef WITH_LWIP
25#include <lwip/pbuf.h>
26#endif
27
28#include <stdint.h>
29
37#define COAP_DEFAULT_PORT 5683 /* CoAP default UDP/TCP port */
38#define COAPS_DEFAULT_PORT 5684 /* CoAP default UDP/TCP port for secure transmission */
39#define COAP_DEFAULT_MAX_AGE 60 /* default maximum object lifetime in seconds */
40#ifndef COAP_DEFAULT_MTU
41#define COAP_DEFAULT_MTU 1152
42#endif /* COAP_DEFAULT_MTU */
43
44#define COAP_BERT_BASE 1152
45
46#ifndef COAP_DEFAULT_HOP_LIMIT
47#define COAP_DEFAULT_HOP_LIMIT 16
48#endif /* COAP_DEFAULT_HOP_LIMIT */
49
50#define COAP_DEFAULT_SCHEME "coap" /* the default scheme for CoAP URIs */
51
53#define COAP_DEFAULT_URI_WELLKNOWN ".well-known/core"
54
55/* Extended Token constants */
56#define COAP_TOKEN_DEFAULT_MAX 8
57#if (UINT_MAX > 65804UL)
58#define COAP_TOKEN_EXT_MAX 65804UL /* 13 + 256 + 65535 */
59#else /* UINT_MAX < 65804UL */
60#define COAP_TOKEN_EXT_MAX 4096
61#endif /* UINT_MAX < 65804UL */
62
63/* CoAP message types */
64
68typedef enum coap_pdu_type_t {
69 COAP_MESSAGE_CON, /* 0 confirmable message (requires ACK/RST) */
70 COAP_MESSAGE_NON, /* 1 non-confirmable message (one-shot message) */
71 COAP_MESSAGE_ACK, /* 2 used to acknowledge confirmable messages */
72 COAP_MESSAGE_RST /* 3 indicates error in received messages */
74
78typedef enum coap_request_t {
83 COAP_REQUEST_FETCH, /* 5 RFC 8132 */
84 COAP_REQUEST_PATCH, /* 6 RFC 8132 */
85 COAP_REQUEST_IPATCH, /* 7 RFC 8132 */
87
88/*
89 * CoAP option numbers (be sure to update coap_option_check_critical() and
90 * coap_add_option() when adding options
91 */
92
93/*
94 * The C, U, and N flags indicate the properties
95 * Critical, Unsafe, and NoCacheKey, respectively.
96 * If U is set, then N has no meaning as per
97 * https://rfc-editor.org/rfc/rfc7252#section-5.10
98 * and is set to a -.
99 *
100 * Separately, R is for the options that can be repeated
101 *
102 * The least significant byte of the option is set as followed
103 * as per https://rfc-editor.org/rfc/rfc7252#section-5.4.6
104 *
105 * 0 1 2 3 4 5 6 7
106 * --+---+---+---+---+---+---+---+
107 * | NoCacheKey| U | C |
108 * --+---+---+---+---+---+---+---+
109 *
110 * https://rfc-editor.org/rfc/rfc8613#section-4 goes on to define E, I and U
111 * properties Encrypted and Integrity Protected, Integrity Protected Only, and
112 * Unprotected respectively. Integrity Protected Only is not currently used.
113 *
114 * An Option is tagged with CUNREIU with any of the letters replaced with _ if
115 * not set, or - for N if U is set (see above) for aiding understanding of the
116 * Option.
117 */
118
119#define COAP_OPTION_IF_MATCH 1 /* C__RE__, opaque, 0-8 B, RFC7252 */
120#define COAP_OPTION_URI_HOST 3 /* CU-___U, String, 1-255 B, RFC7252 */
121#define COAP_OPTION_ETAG 4 /* ___RE__, opaque, 1-8 B, RFC7252 */
122#define COAP_OPTION_IF_NONE_MATCH 5 /* C___E__, empty, 0 B, RFC7252 */
123#define COAP_OPTION_OBSERVE 6 /* _U-_E_U, empty/uint,0/0-3 B, RFC7641 */
124#define COAP_OPTION_URI_PORT 7 /* CU-___U, uint, 0-2 B, RFC7252 */
125#define COAP_OPTION_LOCATION_PATH 8 /* ___RE__, String, 0-255 B, RFC7252 */
126#define COAP_OPTION_OSCORE 9 /* C_____U, *, 0-255 B, RFC8613 */
127#define COAP_OPTION_URI_PATH 11 /* CU-RE__, String, 0-255 B, RFC7252 */
128#define COAP_OPTION_CONTENT_FORMAT 12 /* ____E__, uint, 0-2 B, RFC7252 */
129#define COAP_OPTION_CONTENT_TYPE COAP_OPTION_CONTENT_FORMAT
130/* COAP_OPTION_MAXAGE default 60 seconds if not set */
131#define COAP_OPTION_MAXAGE 14 /* _U-_E_U, uint, 0-4 B, RFC7252 */
132#define COAP_OPTION_URI_QUERY 15 /* CU-RE__, String, 1-255 B, RFC7252 */
133#define COAP_OPTION_HOP_LIMIT 16 /* ______U, uint, 1 B, RFC8768 */
134#define COAP_OPTION_ACCEPT 17 /* C___E__, uint, 0-2 B, RFC7252 */
135#define COAP_OPTION_Q_BLOCK1 19 /* CU__E_U, uint, 0-3 B, RFC9177 */
136#define COAP_OPTION_LOCATION_QUERY 20 /* ___RE__, String, 0-255 B, RFC7252 */
137#define COAP_OPTION_BLOCK2 23 /* CU-_E_U, uint, 0-3 B, RFC7959 */
138#define COAP_OPTION_BLOCK1 27 /* CU-_E_U, uint, 0-3 B, RFC7959 */
139#define COAP_OPTION_SIZE2 28 /* __N_E_U, uint, 0-4 B, RFC7959 */
140#define COAP_OPTION_Q_BLOCK2 31 /* CU_RE_U, uint, 0-3 B, RFC9177 */
141#define COAP_OPTION_PROXY_URI 35 /* CU-___U, String, 1-1034 B, RFC7252 */
142#define COAP_OPTION_PROXY_SCHEME 39 /* CU-___U, String, 1-255 B, RFC7252 */
143#define COAP_OPTION_SIZE1 60 /* __N_E_U, uint, 0-4 B, RFC7252 */
144#define COAP_OPTION_ECHO 252 /* _N__E_U, opaque, 0-40 B, RFC9175 */
145#define COAP_OPTION_NORESPONSE 258 /* _U-_E_U, uint, 0-1 B, RFC7967 */
146#define COAP_OPTION_RTAG 292 /* ___RE_U, opaque, 0-8 B, RFC9175 */
147
148#if (UINT_MAX > 65535)
149#define COAP_MAX_OPT 65535
150#else /* UINT_MAX <= 65535 */
151#define COAP_MAX_OPT 65534
152#endif /* UINT_MAX <= 65535 */
153
154/* CoAP result codes (HTTP-Code / 100 * 40 + HTTP-Code % 100) */
155
156/* As of draft-ietf-core-coap-04, response codes are encoded to base
157 * 32, i.e. the three upper bits determine the response class while
158 * the remaining five fine-grained information specific to that class.
159 */
160#define COAP_RESPONSE_CODE(N) (((N)/100 << 5) | (N)%100)
161
162/* Determines the class of response code C */
163#define COAP_RESPONSE_CLASS(C) (((C) >> 5) & 0xFF)
164
165#ifndef SHORT_ERROR_RESPONSE
176const char *coap_response_phrase(unsigned char code);
177
178#define COAP_ERROR_PHRASE_LENGTH 32
180#else
181#define coap_response_phrase(x) ((char *)NULL)
182
183#define COAP_ERROR_PHRASE_LENGTH 0
184#endif /* SHORT_ERROR_RESPONSE */
185
186#define COAP_SIGNALING_CODE(N) (((N)/100 << 5) | (N)%100)
187
195
196/* Applies to COAP_SIGNALING_CSM */
197#define COAP_SIGNALING_OPTION_MAX_MESSAGE_SIZE 2
198#define COAP_SIGNALING_OPTION_BLOCK_WISE_TRANSFER 4
199#define COAP_SIGNALING_OPTION_EXTENDED_TOKEN_LENGTH 6
200
201/* Applies to COAP_SIGNALING_PING / COAP_SIGNALING_PONG */
202#define COAP_SIGNALING_OPTION_CUSTODY 2
203
204/* Applies to COAP_SIGNALING_RELEASE */
205#define COAP_SIGNALING_OPTION_ALTERNATIVE_ADDRESS 2
206#define COAP_SIGNALING_OPTION_HOLD_OFF 4
207
208/* Applies to COAP_SIGNALING_ABORT */
209#define COAP_SIGNALING_OPTION_BAD_CSM_OPTION 2
210
211/* CoAP media type encoding */
212
213#define COAP_MEDIATYPE_TEXT_PLAIN 0 /* text/plain (UTF-8) */
214#define COAP_MEDIATYPE_APPLICATION_LINK_FORMAT 40 /* application/link-format */
215#define COAP_MEDIATYPE_APPLICATION_XML 41 /* application/xml */
216#define COAP_MEDIATYPE_APPLICATION_OCTET_STREAM 42 /* application/octet-stream */
217#define COAP_MEDIATYPE_APPLICATION_RDF_XML 43 /* application/rdf+xml */
218#define COAP_MEDIATYPE_APPLICATION_EXI 47 /* application/exi */
219#define COAP_MEDIATYPE_APPLICATION_JSON 50 /* application/json */
220#define COAP_MEDIATYPE_APPLICATION_CBOR 60 /* application/cbor */
221#define COAP_MEDIATYPE_APPLICATION_CWT 61 /* application/cwt, RFC 8392 */
222
223/* Content formats from RFC 7390 */
224#define COAP_MEDIATYPE_APPLICATION_COAP_GROUP_JSON 256 /* application/coap-group+json */
225
226/* Content formats from RFC 8152 */
227#define COAP_MEDIATYPE_APPLICATION_COSE_SIGN 98 /* application/cose; cose-type="cose-sign" */
228#define COAP_MEDIATYPE_APPLICATION_COSE_SIGN1 18 /* application/cose; cose-type="cose-sign1" */
229#define COAP_MEDIATYPE_APPLICATION_COSE_ENCRYPT 96 /* application/cose; cose-type="cose-encrypt" */
230#define COAP_MEDIATYPE_APPLICATION_COSE_ENCRYPT0 16 /* application/cose; cose-type="cose-encrypt0" */
231#define COAP_MEDIATYPE_APPLICATION_COSE_MAC 97 /* application/cose; cose-type="cose-mac" */
232#define COAP_MEDIATYPE_APPLICATION_COSE_MAC0 17 /* application/cose; cose-type="cose-mac0" */
233
234#define COAP_MEDIATYPE_APPLICATION_COSE_KEY 101 /* application/cose-key */
235#define COAP_MEDIATYPE_APPLICATION_COSE_KEY_SET 102 /* application/cose-key-set */
236
237/* Content formats from RFC 8428 */
238#define COAP_MEDIATYPE_APPLICATION_SENML_JSON 110 /* application/senml+json */
239#define COAP_MEDIATYPE_APPLICATION_SENSML_JSON 111 /* application/sensml+json */
240#define COAP_MEDIATYPE_APPLICATION_SENML_CBOR 112 /* application/senml+cbor */
241#define COAP_MEDIATYPE_APPLICATION_SENSML_CBOR 113 /* application/sensml+cbor */
242#define COAP_MEDIATYPE_APPLICATION_SENML_EXI 114 /* application/senml-exi */
243#define COAP_MEDIATYPE_APPLICATION_SENSML_EXI 115 /* application/sensml-exi */
244#define COAP_MEDIATYPE_APPLICATION_SENML_XML 310 /* application/senml+xml */
245#define COAP_MEDIATYPE_APPLICATION_SENSML_XML 311 /* application/sensml+xml */
246
247/* Content formats from RFC 8782 */
248#define COAP_MEDIATYPE_APPLICATION_DOTS_CBOR 271 /* application/dots+cbor */
249
250/* Content formats from RFC 9200 */
251#define COAP_MEDIATYPE_APPLICATION_ACE_CBOR 19 /* application/ace+cbor */
252
253/* Content formats from RFC9177 */
254#define COAP_MEDIATYPE_APPLICATION_MB_CBOR_SEQ 272 /* application/missing-blocks+cbor-seq */
255
256/* Content formats from RFC 8613 */
257#define COAP_MEDIATYPE_APPLICATION_OSCORE 10001 /* application/oscore */
258
263typedef int coap_mid_t;
264
266#define COAP_INVALID_MID -1
267
272#define COAP_INVALID_TID COAP_INVALID_MID
273
281COAP_DEPRECATED typedef struct {
282 uint16_t key; /* the option key (no delta coding) */
283 unsigned int length;
285
286#define COAP_OPTION_KEY(option) (option).key
287#define COAP_OPTION_LENGTH(option) (option).length
288#define COAP_OPTION_DATA(option) ((unsigned char *)&(option) + sizeof(coap_option))
289
290#ifdef WITH_LWIP
306coap_pdu_t *coap_pdu_from_pbuf(struct pbuf *pbuf);
307#endif
308
312typedef enum coap_proto_t {
322
326typedef enum coap_pdu_code_t {
328
336
364
371
387 coap_mid_t mid, size_t size);
388
400 coap_session_t *session);
401
410void coap_delete_pdu(coap_pdu_t *pdu);
411
426 coap_session_t *session,
427 size_t token_length,
428 const uint8_t *token,
429 coap_opt_filter_t *drop_options);
430
446 const uint8_t *data,
447 size_t length,
448 coap_pdu_t *pdu);
449
465 size_t len,
466 const uint8_t *data);
467
489size_t coap_add_option(coap_pdu_t *pdu,
490 coap_option_num_t number,
491 size_t len,
492 const uint8_t *data);
493
506 size_t len,
507 const uint8_t *data);
508
521uint8_t *coap_add_data_after(coap_pdu_t *pdu, size_t len);
522
535int coap_get_data(const coap_pdu_t *pdu,
536 size_t *len,
537 const uint8_t **data);
538
556int coap_get_data_large(const coap_pdu_t *pdu,
557 size_t *len,
558 const uint8_t **data,
559 size_t *offset,
560 size_t *total);
561
570
578
587
595
604
613
622
625#endif /* COAP_PDU_H_ */
Helpers for handling options in CoAP PDUs.
uint16_t coap_option_num_t
Definition: coap_option.h:20
Helper functions for URI treatment.
coap_pdu_code_t coap_pdu_get_code(const coap_pdu_t *pdu)
Gets the PDU code associated with pdu.
Definition: coap_pdu.c:1524
const char * coap_response_phrase(unsigned char code)
Returns a human-readable response phrase for the specified CoAP response code.
Definition: coap_pdu.c:893
uint8_t * coap_add_data_after(coap_pdu_t *pdu, size_t len)
Adds given data to the pdu that is passed as first parameter but does not.
Definition: coap_pdu.c:799
void coap_delete_pdu(coap_pdu_t *pdu)
Dispose of an CoAP PDU and frees associated storage.
Definition: coap_pdu.c:168
void coap_pdu_set_code(coap_pdu_t *pdu, coap_pdu_code_t code)
Sets the PDU code in the pdu.
Definition: coap_pdu.c:1529
int coap_mid_t
coap_mid_t is used to store the CoAP Message ID of a CoAP PDU.
Definition: coap_pdu.h:263
coap_request_t
CoAP PDU Request methods.
Definition: coap_pdu.h:78
#define COAP_RESPONSE_CODE(N)
Definition: coap_pdu.h:160
#define COAP_SIGNALING_CODE(N)
Definition: coap_pdu.h:186
coap_proto_t
CoAP protocol types.
Definition: coap_pdu.h:312
coap_pdu_t * coap_new_pdu(coap_pdu_type_t type, coap_pdu_code_t code, coap_session_t *session)
Creates a new CoAP PDU.
Definition: coap_pdu.c:155
coap_pdu_code_t
Set of codes available for a PDU.
Definition: coap_pdu.h:326
coap_pdu_type_t
CoAP PDU message type definitions.
Definition: coap_pdu.h:68
int coap_add_token(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Adds token of length len to pdu.
Definition: coap_pdu.c:310
void coap_pdu_set_type(coap_pdu_t *pdu, coap_pdu_type_t type)
Sets the PDU type in the pdu.
Definition: coap_pdu.c:1542
size_t coap_add_option(coap_pdu_t *pdu, coap_option_num_t number, size_t len, const uint8_t *data)
Adds option of given number to pdu that is passed as first parameter.
Definition: coap_pdu.c:712
coap_pdu_signaling_proto_t
Definition: coap_pdu.h:188
coap_pdu_type_t coap_pdu_get_type(const coap_pdu_t *pdu)
Gets the PDU type associated with pdu.
Definition: coap_pdu.c:1537
int coap_get_data(const coap_pdu_t *pdu, size_t *len, const uint8_t **data)
Retrieves the length and data pointer of specified PDU.
Definition: coap_pdu.c:818
int coap_pdu_parse(coap_proto_t proto, const uint8_t *data, size_t length, coap_pdu_t *pdu)
Parses data into the CoAP PDU structure given in result.
Definition: coap_pdu.c:1405
void coap_pdu_set_mid(coap_pdu_t *pdu, coap_mid_t mid)
Sets the message id in the pdu.
Definition: coap_pdu.c:1558
coap_pdu_t * coap_pdu_duplicate(const coap_pdu_t *old_pdu, coap_session_t *session, size_t token_length, const uint8_t *token, coap_opt_filter_t *drop_options)
Duplicate an existing PDU.
Definition: coap_pdu.c:184
coap_pdu_t * coap_pdu_init(coap_pdu_type_t type, coap_pdu_code_t code, coap_mid_t mid, size_t size)
Creates a new CoAP PDU with at least enough storage space for the given size maximum message size.
Definition: coap_pdu.c:97
int coap_get_data_large(const coap_pdu_t *pdu, size_t *len, const uint8_t **data, size_t *offset, size_t *total)
Retrieves the data from a PDU, with support for large bodies of data that spans multiple PDUs.
Definition: coap_pdu.c:826
coap_mid_t coap_pdu_get_mid(const coap_pdu_t *pdu)
Gets the message id associated with pdu.
Definition: coap_pdu.c:1553
int coap_add_data(coap_pdu_t *pdu, size_t len, const uint8_t *data)
Adds given data to the pdu that is passed as first parameter.
Definition: coap_pdu.c:787
coap_bin_const_t coap_pdu_get_token(const coap_pdu_t *pdu)
Gets the token associated with pdu.
Definition: coap_pdu.c:1548
@ COAP_REQUEST_PUT
Definition: coap_pdu.h:81
@ COAP_REQUEST_DELETE
Definition: coap_pdu.h:82
@ COAP_REQUEST_GET
Definition: coap_pdu.h:79
@ COAP_REQUEST_FETCH
Definition: coap_pdu.h:83
@ COAP_REQUEST_PATCH
Definition: coap_pdu.h:84
@ COAP_REQUEST_IPATCH
Definition: coap_pdu.h:85
@ COAP_REQUEST_POST
Definition: coap_pdu.h:80
@ COAP_PROTO_WS
Definition: coap_pdu.h:318
@ COAP_PROTO_DTLS
Definition: coap_pdu.h:315
@ COAP_PROTO_UDP
Definition: coap_pdu.h:314
@ COAP_PROTO_NONE
Definition: coap_pdu.h:313
@ COAP_PROTO_TLS
Definition: coap_pdu.h:317
@ COAP_PROTO_WSS
Definition: coap_pdu.h:319
@ COAP_PROTO_TCP
Definition: coap_pdu.h:316
@ COAP_PROTO_LAST
Definition: coap_pdu.h:320
@ COAP_RESPONSE_CODE_INTERNAL_ERROR
Definition: coap_pdu.h:357
@ COAP_RESPONSE_CODE_HOP_LIMIT_REACHED
Definition: coap_pdu.h:363
@ COAP_SIGNALING_CODE_ABORT
Definition: coap_pdu.h:369
@ COAP_RESPONSE_CODE_PRECONDITION_FAILED
Definition: coap_pdu.h:352
@ COAP_RESPONSE_CODE_NOT_ALLOWED
Definition: coap_pdu.h:348
@ COAP_RESPONSE_CODE_CHANGED
Definition: coap_pdu.h:340
@ COAP_REQUEST_CODE_PUT
Definition: coap_pdu.h:331
@ COAP_REQUEST_CODE_POST
Definition: coap_pdu.h:330
@ COAP_RESPONSE_CODE_NOT_ACCEPTABLE
Definition: coap_pdu.h:349
@ COAP_SIGNALING_CODE_CSM
Definition: coap_pdu.h:365
@ COAP_REQUEST_CODE_PATCH
Definition: coap_pdu.h:334
@ COAP_RESPONSE_CODE_PROXYING_NOT_SUPPORTED
Definition: coap_pdu.h:362
@ COAP_RESPONSE_CODE_BAD_REQUEST
Definition: coap_pdu.h:343
@ COAP_SIGNALING_CODE_PING
Definition: coap_pdu.h:366
@ COAP_RESPONSE_CODE_INCOMPLETE
Definition: coap_pdu.h:350
@ COAP_REQUEST_CODE_DELETE
Definition: coap_pdu.h:332
@ COAP_SIGNALING_CODE_PONG
Definition: coap_pdu.h:367
@ COAP_RESPONSE_CODE_NOT_IMPLEMENTED
Definition: coap_pdu.h:358
@ COAP_RESPONSE_CODE_NOT_FOUND
Definition: coap_pdu.h:347
@ COAP_RESPONSE_CODE_BAD_GATEWAY
Definition: coap_pdu.h:359
@ COAP_RESPONSE_CODE_BAD_OPTION
Definition: coap_pdu.h:345
@ COAP_RESPONSE_CODE_REQUEST_TOO_LARGE
Definition: coap_pdu.h:353
@ COAP_RESPONSE_CODE_TOO_MANY_REQUESTS
Definition: coap_pdu.h:356
@ COAP_RESPONSE_CODE_CONFLICT
Definition: coap_pdu.h:351
@ COAP_RESPONSE_CODE_DELETED
Definition: coap_pdu.h:338
@ COAP_RESPONSE_CODE_UNAUTHORIZED
Definition: coap_pdu.h:344
@ COAP_RESPONSE_CODE_CREATED
Definition: coap_pdu.h:337
@ COAP_EMPTY_CODE
Definition: coap_pdu.h:327
@ COAP_RESPONSE_CODE_CONTENT
Definition: coap_pdu.h:341
@ COAP_RESPONSE_CODE_UNPROCESSABLE
Definition: coap_pdu.h:355
@ COAP_RESPONSE_CODE_CONTINUE
Definition: coap_pdu.h:342
@ COAP_RESPONSE_CODE_VALID
Definition: coap_pdu.h:339
@ COAP_RESPONSE_CODE_UNSUPPORTED_CONTENT_FORMAT
Definition: coap_pdu.h:354
@ COAP_REQUEST_CODE_GET
Definition: coap_pdu.h:329
@ COAP_SIGNALING_CODE_RELEASE
Definition: coap_pdu.h:368
@ COAP_REQUEST_CODE_FETCH
Definition: coap_pdu.h:333
@ COAP_RESPONSE_CODE_GATEWAY_TIMEOUT
Definition: coap_pdu.h:361
@ COAP_REQUEST_CODE_IPATCH
Definition: coap_pdu.h:335
@ COAP_RESPONSE_CODE_SERVICE_UNAVAILABLE
Definition: coap_pdu.h:360
@ COAP_RESPONSE_CODE_FORBIDDEN
Definition: coap_pdu.h:346
@ COAP_MESSAGE_NON
Definition: coap_pdu.h:70
@ COAP_MESSAGE_ACK
Definition: coap_pdu.h:71
@ COAP_MESSAGE_CON
Definition: coap_pdu.h:69
@ COAP_MESSAGE_RST
Definition: coap_pdu.h:72
@ COAP_SIGNALING_RELEASE
Definition: coap_pdu.h:192
@ COAP_SIGNALING_CSM
Definition: coap_pdu.h:189
@ COAP_SIGNALING_PONG
Definition: coap_pdu.h:191
@ COAP_SIGNALING_PING
Definition: coap_pdu.h:190
@ COAP_SIGNALING_ABORT
Definition: coap_pdu.h:193
#define COAP_DEPRECATED
Definition: libcoap.h:61
CoAP binary data definition with const data.
Definition: coap_str.h:64
unsigned int length
Definition: coap_pdu.h:283
uint16_t key
Definition: coap_pdu.h:282
structure for CoAP PDUs
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...