From 424dfdaf82f6bc94a511d0e1179a05bc988898aa Mon Sep 17 00:00:00 2001 From: "dougt%meer.net" Date: Fri, 23 Sep 2005 22:42:21 +0000 Subject: [PATCH] messing around with network settings. This fixes VPN style connections on WinCE git-svn-id: svn://10.0.0.236/trunk@180900 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/minimo/customization/all.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/mozilla/minimo/customization/all.js b/mozilla/minimo/customization/all.js index 303840a5773..5c161c4b437 100755 --- a/mozilla/minimo/customization/all.js +++ b/mozilla/minimo/customization/all.js @@ -232,27 +232,27 @@ pref("network.http.use-cache", true); // HTTP traffic. an empty value indicates the normal TCP/IP socket type. pref("network.http.default-socket-type", ""); -pref("network.http.keep-alive", true); // set it to false in case of problems -pref("network.http.proxy.keep-alive", true); +pref("network.http.keep-alive", false); // set it to false in case of problems +pref("network.http.proxy.keep-alive", false); pref("network.http.keep-alive.timeout", 300); // limit the absolute number of http connections. -pref("network.http.max-connections", 4); +pref("network.http.max-connections", 2); // limit the absolute number of http connections that can be established per // host. if a http proxy server is enabled, then the "server" is the proxy // server. Otherwise, "server" is the http origin server. -pref("network.http.max-connections-per-server", 4); +pref("network.http.max-connections-per-server", 1); // if network.http.keep-alive is true, and if NOT connecting via a proxy, then // a new connection will only be attempted if the number of active persistent // connections to the server is less then max-persistent-connections-per-server. -pref("network.http.max-persistent-connections-per-server", 4); +pref("network.http.max-persistent-connections-per-server", 0); // if network.http.keep-alive is true, and if connecting via a proxy, then a // new connection will only be attempted if the number of active persistent // connections to the proxy is less then max-persistent-connections-per-proxy. -pref("network.http.max-persistent-connections-per-proxy", 4); +pref("network.http.max-persistent-connections-per-proxy", 0); // amount of time (in seconds) to suspend pending requests, before spawning a // new connection, once the limit on the number of persistent connections per @@ -317,9 +317,6 @@ pref("network.standard-url.escape-utf8", true); // UTF-8. pref("network.standard-url.encode-utf8", true); -// Idle timeout for ftp control connections - 5 minute default -pref("network.ftp.idleConnectionTimeout", 300); - // directory listing format // 2: HTML // 3: XUL directory viewer