Merge "Change how DNS resolver handle no default iface"
This commit is contained in:
commit
c6135ba76d
2 changed files with 10 additions and 12 deletions
|
@ -1874,10 +1874,10 @@ static bool _using_default_dns(const char *iface)
|
||||||
if (iface == NULL || *iface == '\0') return true;
|
if (iface == NULL || *iface == '\0') return true;
|
||||||
|
|
||||||
if_len = _resolv_get_default_iface(buf, sizeof(buf));
|
if_len = _resolv_get_default_iface(buf, sizeof(buf));
|
||||||
if (if_len + 1 <= sizeof(buf)) {
|
if (if_len != 0 && if_len + 1 <= sizeof(buf)) {
|
||||||
if (strcmp(buf, iface) != 0) return false;
|
if (strcmp(buf, iface) == 0) return true;
|
||||||
}
|
}
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*ARGSUSED*/
|
/*ARGSUSED*/
|
||||||
|
|
|
@ -2426,18 +2426,16 @@ _resolv_get_default_iface(char* buff, int buffLen)
|
||||||
|
|
||||||
ifname = _get_default_iface_locked(); // never null, but may be empty
|
ifname = _get_default_iface_locked(); // never null, but may be empty
|
||||||
|
|
||||||
// if default interface not set. Get first cache with an interface
|
// if default interface not set give up.
|
||||||
if (ifname[0] == '\0') {
|
if (ifname[0] == '\0') {
|
||||||
ifname = _find_any_iface_name_locked(); // may be null
|
pthread_mutex_unlock(&_res_cache_list_lock);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if we got the default iface or if (no-default) the find_any call gave an answer
|
len = strlen(ifname);
|
||||||
if (ifname) {
|
if (len < buffLen) {
|
||||||
len = strlen(ifname);
|
strncpy(buff, ifname, len);
|
||||||
if (len < buffLen) {
|
buff[len] = '\0';
|
||||||
strncpy(buff, ifname, len);
|
|
||||||
buff[len] = '\0';
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
buff[0] = '\0';
|
buff[0] = '\0';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue