Add stale-while-revalidate to Cache-Control

This commit is contained in:
Frank Denis 2020-07-07 14:36:04 +02:00
parent 5058aeaf07
commit 1812880562

View file

@ -212,7 +212,7 @@ 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={}", ttl).as_str(), format!("max-age={}, stale-while-revalidate={}", ttl, ttl).as_str(),
) )
.body(Body::from(packet)) .body(Body::from(packet))
.unwrap(); .unwrap();