mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 21:17:36 +03:00
Bump
This commit is contained in:
parent
9ecdb3dcd7
commit
4ae4c5d974
2 changed files with 5 additions and 4 deletions
|
@ -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"]
|
||||
|
|
|
@ -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(())
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue