Skip to content
Snippets Groups Projects
Commit 798b9c78 authored by Martine Lenders's avatar Martine Lenders
Browse files

Merge pull request #2816 from authmillenon/pktdump/fix/reply-to-getset

pktdump: reply to netapi get/set
parents 62c8d6ba cc959390
No related branches found
No related tags found
No related merge requests found
......@@ -130,12 +130,15 @@ static void _dump(ng_pktsnip_t *pkt)
static void *_eventloop(void *arg)
{
(void)arg;
msg_t msg;
msg_t msg, reply;
msg_t msg_queue[NG_PKTDUMP_MSG_QUEUE_SIZE];
/* setup the message queue */
msg_init_queue(msg_queue, NG_PKTDUMP_MSG_QUEUE_SIZE);
reply.content.value = (uint32_t)(-ENOTSUP);
reply.type = NG_NETAPI_MSG_TYPE_ACK;
while (1) {
msg_receive(&msg);
......@@ -148,6 +151,10 @@ static void *_eventloop(void *arg)
puts("PKTDUMP: data to send:");
_dump((ng_pktsnip_t *)msg.content.ptr);
break;
case NG_NETAPI_MSG_TYPE_GET:
case NG_NETAPI_MSG_TYPE_SET:
msg_reply(&msg, &reply);
break;
default:
puts("PKTDUMP: received something unexpected");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment