diff --git a/src/config.rs b/src/config.rs index 9e07dfe..11c5401 100644 --- a/src/config.rs +++ b/src/config.rs @@ -14,6 +14,7 @@ pub fn parse_opts(globals: &mut Globals) { let max_clients = MAX_CLIENTS.to_string(); let timeout_sec = TIMEOUT_SEC.to_string(); + let max_concurrent_streams = MAX_CONCURRENT_STREAMS.to_string(); let min_ttl = MIN_TTL.to_string(); let max_ttl = MAX_TTL.to_string(); let err_ttl = ERR_TTL.to_string(); @@ -62,6 +63,14 @@ pub fn parse_opts(globals: &mut Globals) { .default_value(&max_clients) .help("Maximum number of simultaneous clients"), ) + .arg( + Arg::with_name("max_concurrent") + .short("C") + .long("max-concurrent") + .takes_value(true) + .default_value(&max_concurrent_streams) + .help("Maximum number of concurrent requests per client"), + ) .arg( Arg::with_name("timeout") .short("t") @@ -152,6 +161,7 @@ pub fn parse_opts(globals: &mut Globals) { } globals.max_clients = matches.value_of("max_clients").unwrap().parse().unwrap(); globals.timeout = Duration::from_secs(matches.value_of("timeout").unwrap().parse().unwrap()); + globals.max_concurrent_streams = matches.value_of("max_concurrent").unwrap().parse().unwrap(); globals.min_ttl = matches.value_of("min_ttl").unwrap().parse().unwrap(); globals.max_ttl = matches.value_of("max_ttl").unwrap().parse().unwrap(); globals.err_ttl = matches.value_of("err_ttl").unwrap().parse().unwrap(); diff --git a/src/constants.rs b/src/constants.rs index 7a133f5..a784f2a 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,5 +1,6 @@ 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 SERVER_ADDRESS: &str = "9.9.9.9:53"; pub const TIMEOUT_SEC: u64 = 10; diff --git a/src/libdoh/src/globals.rs b/src/libdoh/src/globals.rs index 5af43a8..3fbba84 100644 --- a/src/libdoh/src/globals.rs +++ b/src/libdoh/src/globals.rs @@ -22,6 +22,7 @@ pub struct Globals { pub max_clients: usize, pub timeout: Duration, pub clients_count: ClientsCount, + pub max_concurrent_streams: u32, pub min_ttl: u32, pub max_ttl: u32, pub err_ttl: u32, diff --git a/src/libdoh/src/lib.rs b/src/libdoh/src/lib.rs index 3f7dca6..3b8908f 100644 --- a/src/libdoh/src/lib.rs +++ b/src/libdoh/src/lib.rs @@ -287,6 +287,7 @@ impl DoH { let mut server = Http::new(); server.http1_keep_alive(self.globals.keepalive); + server.http2_max_concurrent_streams(self.globals.max_concurrent_streams); server.pipeline_flush(true); let executor = LocalExecutor::new(self.globals.runtime_handle.clone()); let server = server.with_executor(executor); diff --git a/src/main.rs b/src/main.rs index 39fc8ef..4214ca9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,6 +36,7 @@ fn main() { max_clients: MAX_CLIENTS, timeout: Duration::from_secs(TIMEOUT_SEC), clients_count: Default::default(), + max_concurrent_streams: MAX_CONCURRENT_STREAMS, min_ttl: MIN_TTL, max_ttl: MAX_TTL, err_ttl: ERR_TTL,