mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 14:54:25 +00:00
Never let "localhost" get sent to a proxy.
Also make "No proxy for" editable always when usable.
This commit is contained in:
@@ -76,7 +76,7 @@ var gConnectionsDialog = {
|
||||
var autologinProxyPref = document.getElementById("signon.autologin.proxy");
|
||||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
||||
@@ -63,7 +63,7 @@ var gConnectionsDialog = {
|
||||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
||||
@@ -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 &&
|
||||
|
||||
Reference in New Issue
Block a user