This commit is contained in:
Frank Denis 2019-03-12 02:06:43 +01:00
parent 9ecdb3dcd7
commit 4ae4c5d974
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "doh-proxy" name = "doh-proxy"
version = "0.1.10" version = "0.1.11"
authors = ["Frank Denis <github@pureftpd.org>"] authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) proxy" description = "A DNS-over-HTTPS (DoH) proxy"
keywords = ["dns","https","doh","proxy"] keywords = ["dns","https","doh","proxy"]

View file

@ -258,16 +258,17 @@ fn main() {
http.keep_alive(false); http.keep_alive(false);
let server = listener.incoming().for_each(move |io| { let server = listener.incoming().for_each(move |io| {
let service = doh.clone(); let service = doh.clone();
doh.inner.clients_count.increment(); let clients_count = &doh.inner.clients_count;
let clients_count = doh.inner.clients_count.clone(); let clients_count_inner = clients_count.clone();
let conn = http let conn = http
.serve_connection(io, service) .serve_connection(io, service)
.timeout(timeout) .timeout(timeout)
.map_err(|_| {}) .map_err(|_| {})
.then(move |fut| { .then(move |fut| {
clients_count.decrement(); clients_count_inner.decrement();
fut fut
}); });
clients_count.increment();
tokio::spawn(conn); tokio::spawn(conn);
Ok(()) Ok(())
}); });