mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 13:37:39 +03:00
This change adds Oblivious DoH (ODoH) target support to doh-server. This change does include support for ODoH key rotation or algorithm agility. ODoH is a default feature and not conditionally compiled out.
10 lines
405 B
Rust
10 lines
405 B
Rust
pub const LISTEN_ADDRESS: &str = "127.0.0.1:3000";
|
|
pub const MAX_CLIENTS: usize = 512;
|
|
pub const MAX_CONCURRENT_STREAMS: u32 = 16;
|
|
pub const PATH: &str = "/dns-query";
|
|
pub const ODOH_CONFIGS_PATH: &str = "/.well-known/odohconfigs";
|
|
pub const SERVER_ADDRESS: &str = "9.9.9.9:53";
|
|
pub const TIMEOUT_SEC: u64 = 10;
|
|
pub const MAX_TTL: u32 = 86400 * 7;
|
|
pub const MIN_TTL: u32 = 10;
|
|
pub const ERR_TTL: u32 = 2;
|