From 4b447bbdef78de5c07f7bab4e820343941ff3841 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Sat, 8 Dec 2018 02:52:26 +0000 Subject: [PATCH] 0703: Alt-Svc FF versions - https://bugzilla.mozilla.org/attachment.cgi?id=8503444&action=diff (FF35, but at false) - Nothing here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Alt-Svc - Opportunistically Encrypt HTTP traffic: (flipped I guess), in FF37 : https://www.mozilla.org/en-US/firefox/37.0/releasenotes/ - I will leave both as FF37 as that's when they were probably "compatible" (which MDN has no info on) --- user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user.js b/user.js index d9b62bd..c517c6f 100644 --- a/user.js +++ b/user.js @@ -471,11 +471,11 @@ user_pref("network.dns.disableIPv6", true); user_pref("network.http.spdy.enabled", false); user_pref("network.http.spdy.enabled.deps", false); user_pref("network.http.spdy.enabled.http2", false); -/* 0703: disable HTTP Alternative Services [FF37+] +/* 0703: disable HTTP Alternative Services * [1] https://tools.ietf.org/html/rfc7838#section-9 * [2] https://www.mnot.net/blog/2016/03/09/alt-svc ***/ -user_pref("network.http.altsvc.enabled", false); -user_pref("network.http.altsvc.oe", false); +user_pref("network.http.altsvc.enabled", false); // [FF37+] +user_pref("network.http.altsvc.oe", false); // [FF37+] /* 0704: enforce the proxy server to do any DNS lookups when using SOCKS * e.g. in Tor, this stops your local DNS server from knowing your Tor destination * as a remote Tor node will handle the DNS request