mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 05:27:36 +03:00
Don't use the TTL for stale-if-error and stale-while-revalidate
Use constant, reasonable values instead
This commit is contained in:
parent
b8c8dacb5d
commit
64cd83a440
2 changed files with 7 additions and 1 deletions
|
@ -2,3 +2,5 @@ pub const DNS_QUERY_PARAM: &str = "dns";
|
||||||
pub const MAX_DNS_QUESTION_LEN: usize = 512;
|
pub const MAX_DNS_QUESTION_LEN: usize = 512;
|
||||||
pub const MAX_DNS_RESPONSE_LEN: usize = 4096;
|
pub const MAX_DNS_RESPONSE_LEN: usize = 4096;
|
||||||
pub const MIN_DNS_PACKET_LEN: usize = 17;
|
pub const MIN_DNS_PACKET_LEN: usize = 17;
|
||||||
|
pub const STALE_IF_ERROR_SECS: u32 = 3600;
|
||||||
|
pub const STALE_WHILE_REVALIDATE_SECS: u32 = 60;
|
||||||
|
|
|
@ -212,7 +212,11 @@ impl DoH {
|
||||||
.header(hyper::header::CONTENT_TYPE, "application/dns-message")
|
.header(hyper::header::CONTENT_TYPE, "application/dns-message")
|
||||||
.header(
|
.header(
|
||||||
hyper::header::CACHE_CONTROL,
|
hyper::header::CACHE_CONTROL,
|
||||||
format!("max-age={}, stale-while-revalidate={}, stale-if-error={}", ttl, ttl, ttl).as_str(),
|
format!(
|
||||||
|
"max-age={}, stale-if-error={}, stale-while-revalidate={}",
|
||||||
|
ttl, STALE_IF_ERROR_SECS, STALE_WHILE_REVALIDATE_SECS
|
||||||
|
)
|
||||||
|
.as_str(),
|
||||||
)
|
)
|
||||||
.body(Body::from(packet))
|
.body(Body::from(packet))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue