Bug 752245 - Increase maximum HTTP connection limit. r=mfinkle

This commit is contained in:
Brian Nicholson 2012-06-07 17:17:15 -07:00
Родитель ac697976de
Коммит a6500d7e14
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -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