lib/fetch.c: ignore EADDRNOTAVAIL and try next ip
This commit is contained in:
parent
58509996aa
commit
7e762cc357
@ -580,6 +580,10 @@ happy_eyeballs_connect(struct addrinfo *res0, int verbose)
|
|||||||
unreach |= UNREACH_IPV6;
|
unreach |= UNREACH_IPV6;
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
} else if (errno == EADDRNOTAVAIL) {
|
||||||
|
err = errno;
|
||||||
|
close(sd);
|
||||||
|
continue;
|
||||||
} else {
|
} else {
|
||||||
err = errno;
|
err = errno;
|
||||||
rv = -1;
|
rv = -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user