Bug 1431738 - We will disable TFO on late beta and release. r=jduell

--HG--
extra : rebase_source : e38c9cb32b70b5d17b809d3ece01a1bef637b5ee
This commit is contained in:
Dragana Damjanovic dd.mozilla@gmail.com 2018-01-19 05:57:00 +02:00
Родитель d4526d2471
Коммит cab6643096
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -4825,11 +4825,14 @@ pref("network.tcp.keepalive.retry_interval", 1); // seconds
pref("network.tcp.keepalive.probe_count", 4);
#endif
#if defined(XP_WIN) || defined(XP_MACOSX)
#if !defined(EARLY_BETA_OR_EARLIER)
pref("network.tcp.tcp_fastopen_enable", false);
#elif defined(XP_WIN) || defined(XP_MACOSX)
pref("network.tcp.tcp_fastopen_enable", true);
#else
pref("network.tcp.tcp_fastopen_enable", false);
#endif
pref("network.tcp.tcp_fastopen_consecutive_failure_limit", 5);
// We are trying to detect stalled tcp connections that use TFO and TLS
// (bug 1395494).