10 #ifndef _PROTOCOL_PARSERS_COAP_
11 #define _PROTOCOL_PARSERS_COAP_
17 #include <arpa/inet.h>
void coap_print_message(coap_message_t message)
Print a CoAP message.
Definition: coap.c:195
coap_message_t coap_parse_message(uint8_t *data, uint16_t length)
Parse a CoAP message.
Definition: coap.c:135
struct coap_message coap_message_t
Abstraction of a CoAP message.
coap_option_t
CoAP Option number.
Definition: coap.h:36
void coap_free_message(coap_message_t message)
Free the memory allocated for a CoAP message.
Definition: coap.c:157
coap_type_t
CoAP message type.
Definition: coap.h:25
http_method_t
Definition: http.h:27
Abstraction of a CoAP message.
Definition: coap.h:45