Don't use the TTL for stale-if-error and stale-while-revalidate

Use constant, reasonable values instead
This commit is contained in:
Frank Denis 2020-07-09 21:08:34 +02:00
parent b8c8dacb5d
commit 64cd83a440
2 changed files with 7 additions and 1 deletions

View file

@ -2,3 +2,5 @@ pub const DNS_QUERY_PARAM: &str = "dns";
pub const MAX_DNS_QUESTION_LEN: usize = 512;
pub const MAX_DNS_RESPONSE_LEN: usize = 4096;
pub const MIN_DNS_PACKET_LEN: usize = 17;
pub const STALE_IF_ERROR_SECS: u32 = 3600;
pub const STALE_WHILE_REVALIDATE_SECS: u32 = 60;

View file

@ -212,7 +212,11 @@ impl DoH {
.header(hyper::header::CONTENT_TYPE, "application/dns-message")
.header(
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))
.unwrap();