Small fixes to networking files

1. Added #include header
2. Fixed #defines that weren't updated
3. Small change to comment that now points to correct RFC section
This commit is contained in:
Brad Campbell 2013-09-09 20:48:11 -04:00
parent 55686d7ca2
commit bc762b6dd6
3 changed files with 5 additions and 3 deletions

View file

@ -693,7 +693,7 @@ tcpip_ipv6_output(void)
return;
}
/* Send in parallel if we are running NUD (nbc state is either STALE,
DELAY, or PROBE). See RFC 4861, section 7.7.3 on node behavior. */
DELAY, or PROBE). See RFC 4861, section 7.3.3 on node behavior. */
if(nbr->state == NBR_STALE) {
nbr->state = NBR_DELAY;
stimer_set(&nbr->reachable, UIP_ND6_DELAY_FIRST_PROBE_TIME);