Bug 1398201 - Disable TFO (TCP Fast Open) for 57 r=jduell draft
authorPatrick McManus <mcmanus@ducksong.com>
Fri, 08 Sep 2017 11:56:40 -0400
changeset 661506 a713693b964efc4cac9169ca4d8f2d02cfa28a61
parent 661321 50857982881ae7803ceb438fee90650a282f7f05
child 730601 854027b37aea923eea363fb1a0f0ac21c1820665
push id78792
push userbmo:mcmanus@ducksong.com
push dateFri, 08 Sep 2017 15:57:07 +0000
reviewersjduell
bugs1398201
milestone57.0a1
Bug 1398201 - Disable TFO (TCP Fast Open) for 57 r=jduell MozReview-Commit-ID: Ghp4T1jnFRA
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -4800,17 +4800,17 @@ pref("network.tcp.keepalive.idle_time", 
 pref("network.tcp.keepalive.retry_interval", 1); // seconds
 #endif
 // Default maximum probe retransmissions.
 // Linux only; not configurable on Win and Mac; fixed at 10 and 8 respectively.
 #if defined(XP_UNIX) && !defined(XP_MACOSX)
 pref("network.tcp.keepalive.probe_count", 4);
 #endif
 
-pref("network.tcp.tcp_fastopen_enable", true);
+pref("network.tcp.tcp_fastopen_enable", false);
 pref("network.tcp.tcp_fastopen_consecutive_failure_limit", 5);
 
 // Whether to disable acceleration for all widgets.
 pref("layers.acceleration.disabled", false);
 // Preference that when switched at runtime will run a series of benchmarks
 // and output the result to stderr.
 pref("layers.bench.enabled", false);