core0-buffer
Sebastien Bourdeauducq 2020-04-17 19:57:58 +08:00
parent e76b84335e
commit a4f5c7040b
1 changed files with 9 additions and 10 deletions

View File

@ -245,7 +245,7 @@ pub fn main() {
task::spawn(async move { task::spawn(async move {
loop { loop {
while let stream = TcpStream::accept(1381, 2048, 2048).await.unwrap() { let stream = TcpStream::accept(1381, 2048, 2048).await.unwrap();
let control = control.clone(); let control = control.clone();
task::spawn(async { task::spawn(async {
let _ = handle_connection(&stream, control) let _ = handle_connection(&stream, control)
@ -255,7 +255,6 @@ pub fn main() {
let _ = stream.abort().await; let _ = stream.abort().await;
}); });
} }
}
}); });
let mut time = 0u32; let mut time = 0u32;