CoAP PDU parsing context structure. More...
CoAP PDU parsing context structure.
When this struct is used to assemble the header, payload
is used as the write pointer and payload_len
contains the number of free bytes left in then packet buffer pointed to by coap_pkt_t::hdr
When the header was written, payload
must not be changed, it must remain pointing to the end of the header. payload_len
must then be set to the size of the payload that was further copied into the packet buffer, after the header.
coap_pkt_t::snips can be used to attach further payload buffers without copying them into the CoAP packet buffer. If there are any, they will be attached in order after the last payload byte (or header byte) in the original CoAP packet buffer.
Definition at line 232 of file nanocoap.h.
#include <nanocoap.h>
Public Member Functions | |
BITFIELD (opt_crit, CONFIG_NANOCOAP_NOPTS_MAX) | |
unhandled critical option | |
Data Fields | |
coap_hdr_t * | hdr |
pointer to raw packet | |
uint8_t * | payload |
pointer to end of the header | |
iolist_t * | snips |
payload snips (optional) | |
uint16_t | payload_len |
length of payload | |
uint16_t | options_len |
length of options array | |
coap_optpos_t | options [CONFIG_NANOCOAP_NOPTS_MAX] |
option offset array | |
coap_hdr_t* coap_pkt_t::hdr |
pointer to raw packet
Definition at line 233 of file nanocoap.h.
coap_optpos_t coap_pkt_t::options[CONFIG_NANOCOAP_NOPTS_MAX] |
option offset array
Definition at line 238 of file nanocoap.h.
uint16_t coap_pkt_t::options_len |
length of options array
Definition at line 237 of file nanocoap.h.
uint8_t* coap_pkt_t::payload |
pointer to end of the header
Definition at line 234 of file nanocoap.h.
uint16_t coap_pkt_t::payload_len |
length of payload
Definition at line 236 of file nanocoap.h.
iolist_t* coap_pkt_t::snips |
payload snips (optional)
Definition at line 235 of file nanocoap.h.