mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
[network] Make http digest auth cnonce length configurable.
This commit is contained in:
parent
4a95f9d418
commit
f3413e94b9
2 changed files with 18 additions and 3 deletions
|
|
@ -1646,6 +1646,12 @@ pref("network.http.keep_empty_response_headers_as_empty_string", true);
|
|||
// Max size, in bytes, for received HTTP response header.
|
||||
pref("network.http.max_response_header_size", 393216);
|
||||
|
||||
// This sets the nonce length to verify the server response (via a
|
||||
// server-returned Authentication-Info header). Also used for session info.
|
||||
// Note: Range-checked to 4..256, if OOB defaults to 16.
|
||||
// Note: Chrome uses 16. Larger values may break sites. See Bug 1892449.
|
||||
pref("network.http.digest_auth_cnonce_length", 16);
|
||||
|
||||
// default values for FTP
|
||||
// in a DSCP environment this should be 40 (0x28, or AF11), per RFC-4594,
|
||||
// Section 4.8 "High-Throughput Data Service Class", and 80 (0x50, or AF22)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue