60#define COAP_MAX_PACKET_SIZE (COAP_MAX_HEADER_SIZE + COAP_MAX_CHUNK_SIZE)
63#ifndef COAP_MAX_BLOCK_SIZE
64#define COAP_MAX_BLOCK_SIZE (COAP_MAX_CHUNK_SIZE < 32 ? 16 : \
65 (COAP_MAX_CHUNK_SIZE < 64 ? 32 : \
66 (COAP_MAX_CHUNK_SIZE < 128 ? 64 : \
67 (COAP_MAX_CHUNK_SIZE < 256 ? 128 : \
68 (COAP_MAX_CHUNK_SIZE < 512 ? 256 : \
69 (COAP_MAX_CHUNK_SIZE < 1024 ? 512 : \
70 (COAP_MAX_CHUNK_SIZE < 2048 ? 1024 : 2048)))))))
74#define COAP_OPTION_MAP_SIZE (sizeof(uint8_t) * 8)
81 coap_message_type_t type;
86 uint8_t token[COAP_TOKEN_LEN];
88 uint8_t options[COAP_OPTION_SIZE1 / COAP_OPTION_MAP_SIZE + 1];
90 uint16_t content_format;
93 uint8_t etag[COAP_ETAG_LEN];
95 const char *proxy_uri;
96 size_t proxy_scheme_len;
97 const char *proxy_scheme;
100 size_t location_path_len;
101 const char *location_path;
103 size_t location_query_len;
104 const char *location_query;
106 const char *uri_path;
109 uint8_t if_match_len;
110 uint8_t if_match[COAP_ETAG_LEN];
113 uint16_t block2_size;
114 uint32_t block2_offset;
117 uint16_t block1_size;
118 uint32_t block1_offset;
121 size_t uri_query_len;
122 const char *uri_query;
123 uint8_t if_none_match;
125 const coap_endpoint_t *src_ep;
127 uint16_t payload_len;
142coap_set_option(coap_message_t *message,
unsigned int opt)
144 if(opt > COAP_OPTION_SIZE1) {
147 message->options[opt / COAP_OPTION_MAP_SIZE] |= 1 << (opt % COAP_OPTION_MAP_SIZE);
152coap_is_option(
const coap_message_t *message,
unsigned int opt)
154 return (opt <= COAP_OPTION_SIZE1) &&
155 (message->options[opt / COAP_OPTION_MAP_SIZE] & (1 << (opt % COAP_OPTION_MAP_SIZE))) != 0;
159#define COAP_SERIALIZE_INT_OPTION(number, field, text) \
160 if(coap_is_option(coap_pkt, number)) { \
161 LOG_DBG(text " [%u]\n", (unsigned int)coap_pkt->field); \
162 option += coap_serialize_int_option(number, current_number, option, coap_pkt->field); \
163 current_number = number; \
165#define COAP_SERIALIZE_BYTE_OPTION(number, field, text) \
166 if(coap_is_option(coap_pkt, number)) { \
167 LOG_DBG(text " %u [0x%02X%02X%02X%02X%02X%02X%02X%02X]\n", (unsigned int)coap_pkt->field##_len, \
168 coap_pkt->field[0], \
169 coap_pkt->field[1], \
170 coap_pkt->field[2], \
171 coap_pkt->field[3], \
172 coap_pkt->field[4], \
173 coap_pkt->field[5], \
174 coap_pkt->field[6], \
177 option += coap_serialize_array_option(number, current_number, option, coap_pkt->field, coap_pkt->field##_len, '\0'); \
178 current_number = number; \
180#define COAP_SERIALIZE_STRING_OPTION(number, field, splitter, text) \
181 if(coap_is_option(coap_pkt, number)) { \
182 LOG_DBG(text " ["); \
183 LOG_DBG_COAP_STRING(coap_pkt->field, coap_pkt->field##_len); \
185 option += coap_serialize_array_option(number, current_number, option, (uint8_t *)coap_pkt->field, coap_pkt->field##_len, splitter); \
186 current_number = number; \
188#define COAP_SERIALIZE_BLOCK_OPTION(number, field, text) \
189 if(coap_is_option(coap_pkt, number)) { \
190 LOG_DBG(text " [%lu%s (%u B/blk)]\n", (unsigned long)coap_pkt->field##_num, coap_pkt->field##_more ? "+" : "", coap_pkt->field##_size); \
191 uint32_t block = coap_pkt->field##_num << 4; \
192 if(coap_pkt->field##_more) { block |= 0x8; } \
193 block |= 0xF & coap_log_2(coap_pkt->field##_size / 16); \
194 LOG_DBG(text " encoded: 0x%lX\n", (unsigned long)block); \
195 option += coap_serialize_int_option(number, current_number, option, block); \
196 current_number = number; \
200extern coap_status_t coap_status_code;
201#if COAP_MESSAGE_ON_ERROR
202extern const char *coap_error_message;
205void coap_init_connection(
void);
206uint16_t coap_get_mid(
void);
208void coap_init_message(coap_message_t *message, coap_message_type_t type,
209 uint8_t code, uint16_t mid);
210size_t coap_serialize_message(coap_message_t *message, uint8_t *buffer);
211coap_status_t coap_parse_message(coap_message_t *request, uint8_t *data,
214int coap_get_query_variable(
const coap_message_t *message,
const char *name,
215 const char **output);
216int coap_get_post_variable(
const coap_message_t *message,
const char *name,
217 const char **output);
220coap_get_method_type(
const coap_message_t *message)
225static inline const coap_endpoint_t *
226coap_get_src_endpoint(
const coap_message_t *request)
228 return request->src_ep;
232coap_set_src_endpoint(coap_message_t *request,
const coap_endpoint_t *ep)
234 request->src_ep = ep;
238int coap_set_status_code(coap_message_t *message,
unsigned int code);
240int coap_set_token(coap_message_t *message,
const uint8_t *token,
243int coap_get_header_content_format(
const coap_message_t *message,
244 unsigned int *format);
245int coap_set_header_content_format(coap_message_t *message,
unsigned int format);
247int coap_get_header_accept(
const coap_message_t *message,
unsigned int *
accept);
248int coap_set_header_accept(coap_message_t *message,
unsigned int accept);
250int coap_get_header_max_age(
const coap_message_t *message, uint32_t *age);
251int coap_set_header_max_age(coap_message_t *message, uint32_t age);
253int coap_get_header_etag(
const coap_message_t *message,
const uint8_t **etag);
254int coap_set_header_etag(coap_message_t *message,
const uint8_t *etag,
257int coap_get_header_if_match(
const coap_message_t *message,
258 const uint8_t **etag);
259int coap_set_header_if_match(coap_message_t *message,
const uint8_t *etag,
262int coap_get_header_if_none_match(
const coap_message_t *message);
263int coap_set_header_if_none_match(coap_message_t *message);
266int coap_get_header_proxy_uri(
const coap_message_t *message,
const char **uri);
267int coap_set_header_proxy_uri(coap_message_t *message,
const char *uri);
276int coap_get_header_uri_host(
const coap_message_t *message,
const char **host);
277int coap_set_header_uri_host(coap_message_t *message,
const char *host);
280int coap_get_header_uri_path(
const coap_message_t *message,
const char **path);
281int coap_set_header_uri_path(coap_message_t *message,
const char *path);
284int coap_get_header_uri_query(
const coap_message_t *message,
286int coap_set_header_uri_query(coap_message_t *message,
const char *query);
289int coap_get_header_location_path(
const coap_message_t *message,
292int coap_set_header_location_path(coap_message_t *message,
const char *path);
295int coap_get_header_location_query(
const coap_message_t *message,
297int coap_set_header_location_query(coap_message_t *message,
const char *query);
299int coap_get_header_observe(
const coap_message_t *message, uint32_t *observe);
300int coap_set_header_observe(coap_message_t *message, uint32_t observe);
302int coap_get_header_block2(
const coap_message_t *message, uint32_t *num,
303 uint8_t *more, uint16_t *size, uint32_t *offset);
304int coap_set_header_block2(coap_message_t *message, uint32_t num, uint8_t more,
307int coap_get_header_block1(
const coap_message_t *message, uint32_t *num,
308 uint8_t *more, uint16_t *size, uint32_t *offset);
309int coap_set_header_block1(coap_message_t *message, uint32_t num, uint8_t more,
312int coap_get_header_size2(
const coap_message_t *message, uint32_t *size);
313int coap_set_header_size2(coap_message_t *message, uint32_t size);
315int coap_get_header_size1(
const coap_message_t *message, uint32_t *size);
316int coap_set_header_size1(coap_message_t *message, uint32_t size);
318int coap_get_payload(
const coap_message_t *message,
const uint8_t **payload);
319int coap_set_payload(coap_message_t *message,
const void *payload,
Collection of default configuration values.
Collection of constants specified in the CoAP standard.
coap_resource_flags_t
Resource flags for allowed methods and special functionalities.
static uint8_t accept(uint8_t in)