Browse Source

deps: reapply c-ares floating patch

v0.11.3-release
Ben Noordhuis 12 years ago
parent
commit
3afa5e6b71
  1. 5
      deps/cares/src/ares_init.c

5
deps/cares/src/ares_init.c

@ -997,6 +997,11 @@ static int get_DNS_AdaptersAddresses(char **outptr)
}
else if (namesrvr.sa->sa_family == AF_INET6)
{
/* Windows apparently always reports some IPv6 DNS servers that
* prefixed with fec0:0:0:ffff. These ususally do not point to
* working DNS servers, so we ignore them. */
if (strncmp(txtaddr, "fec0:0:0:ffff:", 14) == 0)
continue;
if (memcmp(&namesrvr.sa6->sin6_addr, &ares_in6addr_any,
sizeof(namesrvr.sa6->sin6_addr)) == 0)
continue;

Loading…
Cancel
Save