Home | History | Annotate | Download | only in netinet6

Lines Matching defs:best_ia

1981 bestia(struct in6_ifaddr *best_ia, struct in6_ifaddr *ia)
1983 if (best_ia == NULL ||
1984 best_ia->ia_ifa.ifa_preference < ia->ia_ifa.ifa_preference)
1986 return best_ia;
2124 struct in6_ifaddr *best_ia = NULL, *ia;
2156 if (best_ia == NULL) {
2157 best_ia = ia;
2161 blen = in6_matchlen(&best_ia->ia_addr.sin6_addr, dst);
2165 best_ia = ia;
2167 best_ia = bestia(best_ia, ia);
2169 if (best_ia != NULL)
2170 return best_ia;
2188 best_ia = bestia(best_ia, ia);
2190 if (best_ia != NULL)
2191 return best_ia;