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]
name = "doh-proxy"
version = "0.1.10"
version = "0.1.11"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "A DNS-over-HTTPS (DoH) proxy"
keywords = ["dns","https","doh","proxy"]

View file

@ -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(())
});