| 812 | } |
| 813 | |
| 814 | struct nd_defrouter * |
| 815 | defrouter_lookup(const struct in6_addr *addr, struct ifnet *ifp) |
| 816 | { |
| 817 | struct nd_defrouter *dr; |
| 818 | |
| 819 | ND6_RLOCK(); |
| 820 | dr = defrouter_lookup_locked(addr, ifp); |
| 821 | ND6_RUNLOCK(); |
| 822 | return (dr); |
| 823 | } |
| 824 | |
| 825 | /* |
| 826 | * Remove all default routes from default router list. |
no test coverage detected