From 4ae4c5d97439f2196c83f262ca0c27dbe47f5d8f Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 12 Mar 2019 02:06:43 +0100 Subject: [PATCH] Bump --- Cargo.toml | 2 +- src/main.rs | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eeaf9b9..c8b199f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doh-proxy" -version = "0.1.10" +version = "0.1.11" authors = ["Frank Denis "] description = "A DNS-over-HTTPS (DoH) proxy" keywords = ["dns","https","doh","proxy"] diff --git a/src/main.rs b/src/main.rs index d27a439..1a675a4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -258,16 +258,17 @@ fn main() { http.keep_alive(false); let server = listener.incoming().for_each(move |io| { let service = doh.clone(); - doh.inner.clients_count.increment(); - let clients_count = doh.inner.clients_count.clone(); + let clients_count = &doh.inner.clients_count; + let clients_count_inner = clients_count.clone(); let conn = http .serve_connection(io, service) .timeout(timeout) .map_err(|_| {}) .then(move |fut| { - clients_count.decrement(); + clients_count_inner.decrement(); fut }); + clients_count.increment(); tokio::spawn(conn); Ok(()) });