Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
Diff: ip6/icmp/icmp6.cpp
- Revision:
- 46:40d33e9037e4
- Parent:
- 44:83ce5ace337b
- Child:
- 47:73af5c0b0dc2
--- a/ip6/icmp/icmp6.cpp Sun Oct 22 17:19:48 2017 +0000
+++ b/ip6/icmp/icmp6.cpp Tue Oct 24 07:01:35 2017 +0000
@@ -4,6 +4,7 @@
#include "action.h"
#include "ns.h"
#include "ra.h"
+#include "rs.h"
#include "ip.h"
#include "ip6.h"
#include "slaac.h"
@@ -149,7 +150,7 @@
{
pData = (char*)pPacket + HEADER_LENGTH;
int action = DO_NOTHING;
- if (!action) action = RaGetWaitingSolicitation(pData, &dataLength, &type, &code);
+ if (!action) action = RsGetWaitingSolicitation(pData, &dataLength, &type, &code);
if (!action) action = NsGetWaitingSolicitation(pData, &dataLength, &type, &code);
if (!action) return DO_NOTHING;