Skip to content

Commit

Permalink
deps: reapply c-ares floating patch
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed May 15, 2013
1 parent 7934825 commit 3afa5e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deps/cares/src/ares_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3afa5e6

Please sign in to comment.