Bug 1296280 (part 3) - Set HPACK receive buffer size appropriately for the platform r=mcmanus

MozReview-Commit-ID: DfckEZfEd10

--HG--
extra : rebase_source : 1c6915382842c35261b8800d73719cd41deb0b8d
This commit is contained in:
Nicholas Hurley 2016-09-06 12:48:41 -07:00
Родитель 01c12cb1ef
Коммит 57433e2050
3 изменённых файлов: 3 добавлений и 0 удалений

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

@ -90,6 +90,7 @@ pref("network.cookie.cookieBehavior", 0);
// spdy // spdy
pref("network.http.spdy.push-allowance", 32768); pref("network.http.spdy.push-allowance", 32768);
pref("network.http.spdy.default-hpack-buffer", 4096); // 4k
// See bug 545869 for details on why these are set the way they are // See bug 545869 for details on why these are set the way they are
pref("network.buffer.cache.count", 24); pref("network.buffer.cache.count", 24);

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

@ -110,6 +110,7 @@ pref("network.http.max-persistent-connections-per-proxy", 20);
// spdy // spdy
pref("network.http.spdy.push-allowance", 32768); pref("network.http.spdy.push-allowance", 32768);
pref("network.http.spdy.default-hpack-buffer", 4096); // 4k
// See bug 545869 for details on why these are set the way they are // See bug 545869 for details on why these are set the way they are
pref("network.buffer.cache.count", 24); pref("network.buffer.cache.count", 24);

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

@ -1550,6 +1550,7 @@ pref("network.http.spdy.allow-push", true);
pref("network.http.spdy.push-allowance", 131072); // 128KB pref("network.http.spdy.push-allowance", 131072); // 128KB
pref("network.http.spdy.pull-allowance", 12582912); // 12MB pref("network.http.spdy.pull-allowance", 12582912); // 12MB
pref("network.http.spdy.default-concurrent", 100); pref("network.http.spdy.default-concurrent", 100);
pref("network.http.spdy.default-hpack-buffer", 65536); // 64k
// alt-svc allows separation of transport routing from // alt-svc allows separation of transport routing from
// the origin host without using a proxy. // the origin host without using a proxy.