Never let "localhost" get sent to a proxy.

Also make "No proxy for" editable always when usable.
This commit is contained in:
wolfbeast 2019-02-07 12:58:13 +01:00 committed by Roy Tam
commit dbe5dd5e2a
3 changed files with 9 additions and 2 deletions

View file

@ -1841,6 +1841,13 @@ nsProtocolProxyService::Resolve_Internal(nsIChannel *channel,
if (mPACMan && mPACMan->IsPACURI(uri))
return NS_OK;
// If proxies are enabled and this host:port combo is supposed to use a
// proxy, check for a proxy.
if ((mProxyConfig == PROXYCONFIG_DIRECT) ||
!CanUseProxy(uri, info.defaultPort)) {
return NS_OK;
}
bool mainThreadOnly;
if (mSystemProxySettings &&
mProxyConfig == PROXYCONFIG_SYSTEM &&