Fix multicast from Ncp Host going back to host (#1910)

* fix multicast from Ncp Host going back to host

* rename SendFromNcpHost to SendRaw
This commit is contained in:
Buke Po
2017-06-16 23:58:13 -07:00
committed by Jonathan Hui
parent f067d68f38
commit d807d8d491
3 changed files with 40 additions and 7 deletions
+2 -2
View File
@@ -162,8 +162,8 @@ otError otIp6Send(otInstance *aInstance, otMessage *aMessage)
otLogFuncEntry();
error = aInstance->mIp6.HandleDatagram(*static_cast<Message *>(aMessage), NULL,
aInstance->mThreadNetif.GetInterfaceId(), NULL, true);
error = aInstance->mIp6.SendRaw(*static_cast<Message *>(aMessage),
aInstance->mThreadNetif.GetInterfaceId());
otLogFuncExitErr(error);