mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Reload certs every 10 sec
This commit is contained in:
parent
518341df37
commit
ba663ef4d9
2 changed files with 3 additions and 1 deletions
|
@ -4,3 +4,4 @@ pub const MAX_DNS_RESPONSE_LEN: usize = 4096;
|
|||
pub const MIN_DNS_PACKET_LEN: usize = 17;
|
||||
pub const STALE_IF_ERROR_SECS: u32 = 86400;
|
||||
pub const STALE_WHILE_REVALIDATE_SECS: u32 = 60;
|
||||
pub const CERTS_WATCH_DELAY_SECS: u32 = 10;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
use crate::constants::CERTS_WATCH_DELAY_SECS;
|
||||
use crate::errors::*;
|
||||
use crate::{DoH, LocalExecutor};
|
||||
|
||||
|
@ -153,7 +154,7 @@ impl DoH {
|
|||
}
|
||||
Err(e) => eprintln!("TLS certificates error: {}", e),
|
||||
}
|
||||
tokio::time::sleep(Duration::from_secs(5)).await;
|
||||
tokio::time::sleep(Duration::from_secs(CERTS_WATCH_DELAY_SECS.into())).await;
|
||||
}
|
||||
Ok::<_, DoHError>(())
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue