mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Nits
This commit is contained in:
parent
63adc48af5
commit
d0dc5d45e3
1 changed files with 2 additions and 2 deletions
|
@ -112,14 +112,14 @@ fn main() {
|
|||
let timers = tokio_timer::wheel().build();
|
||||
let client_count = Rc::new(RefCell::new(0u32));
|
||||
let fut = server.for_each(move |client_fut| {
|
||||
let client_count_inner = client_count.clone();
|
||||
{
|
||||
let count = client_count_inner.borrow_mut();
|
||||
let count = client_count.borrow_mut();
|
||||
if *count > MAX_CLIENTS {
|
||||
return Ok(());
|
||||
}
|
||||
(*count).saturating_add(1);
|
||||
}
|
||||
let client_count_inner = client_count.clone();
|
||||
let timers_inner = timers.clone();
|
||||
let fut = client_fut
|
||||
.map(move |_| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue