application/dns-udpwireformat -> application/dns-message

This commit is contained in:
Frank Denis 2018-05-19 02:37:18 +02:00
parent 56e617b9a8
commit f96cb7aa3a

View file

@ -153,7 +153,7 @@ impl DoH {
let response = response let response = response
.with_header(ContentLength(packet_len as u64)) .with_header(ContentLength(packet_len as u64))
.with_header(ContentType( .with_header(ContentType(
"application/dns-udpwireformat".parse().unwrap(), "application/dns-message".parse().unwrap(),
)) ))
.with_header(CacheControl(vec![CacheDirective::MaxAge(ttl)])); .with_header(CacheControl(vec![CacheDirective::MaxAge(ttl)]));
future::ok(response) future::ok(response)