doh-server/src/constants.rs
Christopher Wood 05a60818ce Add Oblivious DoH target support as a default feature.
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.
2021-04-26 13:05:52 -07:00

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;