mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Don't use a 0 TTL for ODoH configs
This commit is contained in:
parent
3bc0d22f69
commit
5c369fc610
1 changed files with 5 additions and 1 deletions
|
@ -233,7 +233,11 @@ impl DoH {
|
|||
async fn serve_odoh_configs(&self) -> Result<Response<Body>, http::Error> {
|
||||
let odoh_public_key = (*self.globals.odoh_rotator).clone().current_key();
|
||||
let configs = (*odoh_public_key).clone().config();
|
||||
match self.build_response(configs, 0, "application/octet-stream".to_string()) {
|
||||
match self.build_response(
|
||||
configs,
|
||||
ODOH_KEY_ROTATION_SECS,
|
||||
"application/octet-stream".to_string(),
|
||||
) {
|
||||
Ok(resp) => Ok(resp),
|
||||
Err(e) => http_error(StatusCode::from(e)),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue