mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
even if nd6_nud_hint is called, do not change a neighbor's status
unless the old status is probably reachable (i.e. the link-layer address has already been resolved). Obtained from: KAME Project
This commit is contained in:
parent
539aabcb54
commit
ad8d5711fb
1 changed files with 1 additions and 1 deletions
|
|
@ -730,7 +730,7 @@ nd6_nud_hint(rt, dst6)
|
|||
}
|
||||
|
||||
ln = (struct llinfo_nd6 *)rt->rt_llinfo;
|
||||
if (ln->ln_state == ND6_LLINFO_INCOMPLETE)
|
||||
if (ln->ln_state < ND6_LLINFO_REACHABLE)
|
||||
return;
|
||||
|
||||
ln->ln_state = ND6_LLINFO_REACHABLE;
|
||||
|
|
|
|||
Loading…
Reference in a new issue