Skip to content
Snippets Groups Projects
Commit 40f5aeba authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

Merge pull request #4414 from cgundogan/pr/rpl/fix_netapi_commands_handling

rpl: fix netapi commands handling
parents e9d709b2 7269cdbf
No related branches found
No related tags found
No related merge requests found
...@@ -195,9 +195,10 @@ static void *_event_loop(void *args) ...@@ -195,9 +195,10 @@ static void *_event_loop(void *args)
_receive((gnrc_pktsnip_t *)msg.content.ptr); _receive((gnrc_pktsnip_t *)msg.content.ptr);
break; break;
case GNRC_NETAPI_MSG_TYPE_SND: case GNRC_NETAPI_MSG_TYPE_SND:
break;
case GNRC_NETAPI_MSG_TYPE_GET: case GNRC_NETAPI_MSG_TYPE_GET:
case GNRC_NETAPI_MSG_TYPE_SET: case GNRC_NETAPI_MSG_TYPE_SET:
DEBUG("RPL: reply to unsupported recv/get/set\n"); DEBUG("RPL: reply to unsupported get/set\n");
reply.content.value = -ENOTSUP; reply.content.value = -ENOTSUP;
msg_reply(&msg, &reply); msg_reply(&msg, &reply);
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment