Commit 8ec47111 authored by Ilia Penev's avatar Ilia Penev Committed by Cesanta Bot

Fix COAP compilation

PUBLISHED_FROM=0a0ef6f68d743cbba91d9ba911f1c5be69e6aac7
parent 8b67274c
...@@ -11529,14 +11529,15 @@ uint32_t mg_coap_send_ack(struct mg_connection *nc, uint16_t msg_id) { ...@@ -11529,14 +11529,15 @@ uint32_t mg_coap_send_ack(struct mg_connection *nc, uint16_t msg_id) {
return mg_coap_send_message(nc, &cm); return mg_coap_send_message(nc, &cm);
} }
static void coap_handler(struct mg_connection *nc, int ev, void *ev_data) { static void coap_handler(struct mg_connection *nc, int ev,
void *ev_data MG_UD_ARG(void *user_data)) {
struct mbuf *io = &nc->recv_mbuf; struct mbuf *io = &nc->recv_mbuf;
struct mg_coap_message cm; struct mg_coap_message cm;
uint32_t parse_res; uint32_t parse_res;
memset(&cm, 0, sizeof(cm)); memset(&cm, 0, sizeof(cm));
nc->handler(nc, ev, ev_data); nc->handler(nc, ev, ev_data MG_UD_ARG(user_data));
switch (ev) { switch (ev) {
case MG_EV_RECV: case MG_EV_RECV:
...@@ -11549,7 +11550,8 @@ static void coap_handler(struct mg_connection *nc, int ev, void *ev_data) { ...@@ -11549,7 +11550,8 @@ static void coap_handler(struct mg_connection *nc, int ev, void *ev_data) {
*/ */
cm.flags |= MG_COAP_FORMAT_ERROR; /* LCOV_EXCL_LINE */ cm.flags |= MG_COAP_FORMAT_ERROR; /* LCOV_EXCL_LINE */
} /* LCOV_EXCL_LINE */ } /* LCOV_EXCL_LINE */
nc->handler(nc, MG_COAP_EVENT_BASE + cm.msg_type, &cm); nc->handler(nc, MG_COAP_EVENT_BASE + cm.msg_type,
&cm MG_UD_ARG(user_data));
} }
mg_coap_free_options(&cm); mg_coap_free_options(&cm);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment