Lines Matching refs:family
45 int family,
54 if (!IN_SET(family, AF_INET, AF_INET6))
76 s->family = family;
524 (void) in_addr_to_string(server->family, &server->address, &server->server_string);
571 siphash24_compress(&s->family, sizeof(s->family), state);
572 siphash24_compress(&s->address, FAMILY_ADDRESS_SIZE(s->family), state);
578 if (x->family < y->family)
580 if (x->family > y->family)
583 return memcmp(&x->address, &y->address, FAMILY_ADDRESS_SIZE(x->family));
625 DnsServer *dns_server_find(DnsServer *first, int family, const union in_addr_union *in_addr) {
629 if (s->family == family && in_addr_equal(family, &s->address, in_addr) > 0)