Merge branch 'master' of ssh://contiki.git.sourceforge.net/gitroot/contiki/contiki
This commit is contained in:
commit
7eac4393c2
1 changed files with 3 additions and 1 deletions
|
@ -224,7 +224,9 @@ uip_ds6_periodic(void)
|
||||||
if(locnbr->nscount >= UIP_ND6_MAX_UNICAST_SOLICIT) {
|
if(locnbr->nscount >= UIP_ND6_MAX_UNICAST_SOLICIT) {
|
||||||
PRINTF("PROBE END\n");
|
PRINTF("PROBE END\n");
|
||||||
if((locdefrt = uip_ds6_defrt_lookup(&locnbr->ipaddr)) != NULL) {
|
if((locdefrt = uip_ds6_defrt_lookup(&locnbr->ipaddr)) != NULL) {
|
||||||
uip_ds6_defrt_rm(locdefrt);
|
if (!locdefrt->isinfinite) {
|
||||||
|
uip_ds6_defrt_rm(locdefrt);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
uip_ds6_nbr_rm(locnbr);
|
uip_ds6_nbr_rm(locnbr);
|
||||||
} else if(stimer_expired(&locnbr->sendns) && (uip_len == 0)) {
|
} else if(stimer_expired(&locnbr->sendns) && (uip_len == 0)) {
|
||||||
|
|
Loading…
Reference in a new issue