mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 13:37:39 +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]
|
[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"]
|
||||||
|
|
|
@ -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(())
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue