diff --git a/user.js (less connections) b/user.js (less connections) index 956f5db..6a4358e 100644 --- a/user.js (less connections) +++ b/user.js (less connections) @@ -539,6 +539,11 @@ user_pref("browser.contentHandlers.types.3.uri", ""); // [FENNEC] // https://bugzilla.mozilla.org/show_bug.cgi?id=888268 user_pref("network.tickle-wifi.enabled", false); // ------------------------------------- +// Pref : Disable SSL False Start for HTTPS/WebSockets/SPDY connections +https://bugzilla.mozilla.org/show_bug.cgi?id=658222 +// Avoid the client to complete its handshake before starting the actual session +user_pref("security.ssl.enable_false_start", false); +//-------------------------------------- // Pref : Disable Corroborate.jsm telemetry // https://bugzilla.mozilla.org/show_bug.cgi?id=1608308 user_pref("corroborator.enabled", false); // [DESKTOP] @@ -1827,7 +1832,7 @@ user_pref("browser.cache.disk.smart_size.first_run", false); // ------------------------------------- // Pref : Disable memory cache // Capacity: -1=determine dynamically (default), 0=none, n=memory capacity in kilobytes -// user_pref("browser.cache.memory.enable", false); +user_pref("browser.cache.memory.enable", false); // user_pref("browser.cache.memory.capacity", 0); // ------------------------------------- // Pref : Disable permissions manager from writing to disk @@ -2283,7 +2288,7 @@ user_pref("network.cookie.same-site.enabled", true); // [DEFAULT: true] // Pref : Disable DOM (Document Object Model) Storage // [WARNING] This will break a LOT of sites' functionality AND extensions! // You are better off using an extension for more granular control -// user_pref("dom.storage.enabled", false); +user_pref("dom.storage.enabled", false); // ------------------------------------- // Pref : Do not download URLs for the offline cache user_pref("browser.cache.offline.storage.enable", false);