mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
e5ac12c311
5 changed files with 26 additions and 2 deletions
|
|
@ -1889,6 +1889,16 @@ pref("network.dns.disablePrefetch", false);
|
|||
// rejected before being given to DNS. RFC 7686
|
||||
pref("network.dns.blockDotOnion", true);
|
||||
|
||||
// This preference controls whether to block access to 0.0.0.0
|
||||
// to mitigate local access issues in *NIX network stacks.
|
||||
#if defined(XP_WIN)
|
||||
// Windows is not affected, so don't block it there.
|
||||
// XXX: any other OSes not having this issue?
|
||||
pref("network.dns.blockQuad0", false);
|
||||
#else
|
||||
pref("network.dns.blockQuad0", true);
|
||||
#endif
|
||||
|
||||
// These domains are treated as localhost equivalent
|
||||
pref("network.dns.localDomains", "");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue