Remove max-stale

This commit is contained in:
Frank Denis 2020-07-09 20:26:07 +02:00
parent 1a0acbea44
commit b8c8dacb5d

View file

@ -212,7 +212,7 @@ impl DoH {
.header(hyper::header::CONTENT_TYPE, "application/dns-message")
.header(
hyper::header::CACHE_CONTROL,
format!("max-age={}, max-stale={}, stale-while-revalidate={}, stale-if-error={}", ttl, ttl, ttl, ttl).as_str(),
format!("max-age={}, stale-while-revalidate={}, stale-if-error={}", ttl, ttl, ttl).as_str(),
)
.body(Body::from(packet))
.unwrap();