From 9f5d4d6a4cba0c0c703f69ed283a12b93567df31 Mon Sep 17 00:00:00 2001 From: Brian Nicholson Date: Thu, 7 Jun 2012 17:17:15 -0700 Subject: [PATCH] Bug 752245 - Increase maximum HTTP connection limit. r=mfinkle --- mobile/android/app/mobile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mobile/android/app/mobile.js b/mobile/android/app/mobile.js index 67e6f83d8e9..8afeff28790 100644 --- a/mobile/android/app/mobile.js +++ b/mobile/android/app/mobile.js @@ -89,10 +89,10 @@ pref("network.http.pipelining.ssl", true); pref("network.http.proxy.pipelining", true); pref("network.http.pipelining.maxrequests" , 6); pref("network.http.keep-alive.timeout", 600); -pref("network.http.max-connections", 6); -pref("network.http.max-connections-per-server", 4); -pref("network.http.max-persistent-connections-per-server", 4); -pref("network.http.max-persistent-connections-per-proxy", 4); +pref("network.http.max-connections", 20); +pref("network.http.max-connections-per-server", 15); +pref("network.http.max-persistent-connections-per-server", 6); +pref("network.http.max-persistent-connections-per-proxy", 8); #ifdef MOZ_PLATFORM_MAEMO pref("network.autodial-helper.enabled", true); #endif