From cf870cb9abfaad535716b87adeaa6a545588a126 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 13 Oct 2014 13:28:22 +0000 Subject: [PATCH] Treat ND6_LLINFO_NOSTATE as reachable as this is commonly hit when first adding a route. From ND6_LLINFO_NOSTATE the kernel should update it promptly to something more appropriate such as ND6_LLINFO_INCOMPLETE. --- if-bsd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/if-bsd.c b/if-bsd.c index cd9bdd9f..728228c3 100644 --- a/if-bsd.c +++ b/if-bsd.c @@ -1060,6 +1060,7 @@ if_nd6reachable(const char *ifname, struct in6_addr *addr) } else { flags = 0; switch(nbi.state) { + case ND6_LLINFO_NOSTATE: /* just added */ case ND6_LLINFO_REACHABLE: case ND6_LLINFO_STALE: case ND6_LLINFO_DELAY: -- 2.47.3