From 9104d000650218f7e5d6cc3932fb5661fae179a0 Mon Sep 17 00:00:00 2001 From: pradt2 Date: Mon, 7 Nov 2022 18:30:58 +0000 Subject: [PATCH] Added TCP support --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 60c8a5bf8..e1cc8ee3e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ mod utils; mod outputs; mod geoip; -const CONCURRENT_SOCKETS_USED_LIMIT: usize = 1; +const CONCURRENT_SOCKETS_USED_LIMIT: usize = 64; #[tokio::main(flavor = "current_thread")] async fn main() -> io::Result<()> {