Bug 1840981 - Set network.dns.get-ttl to false, r=necko-reviewers,valentin

Differential Revision: https://phabricator.services.mozilla.com/D194730
This commit is contained in:
Kershaw Chang 2023-11-27 11:51:16 +00:00
parent ba53bf13b2
commit 1e8e8eb17c

View file

@ -47,6 +47,7 @@ add_setup(async function setup() {
"network.http.http3.retry_different_ip_family",
true
);
Services.prefs.setBoolPref("network.dns.get-ttl", false);
certOverrideService.setDisableAllSecurityChecksAndLetAttackersInterceptMyData(
true
@ -62,6 +63,7 @@ add_setup(async function setup() {
);
Services.prefs.clearUserPref("network.http.speculative-parallel-limit");
Services.prefs.clearUserPref("network.http.http3.block_loopback_ipv6_addr");
Services.prefs.clearUserPref("network.dns.get-ttl");
if (trrServer) {
await trrServer.stop();
}