diff --git a/src/ports.rs b/src/ports.rs index d1aaa8e..d785c7e 100644 --- a/src/ports.rs +++ b/src/ports.rs @@ -362,7 +362,6 @@ impl Rejector { if let Ok((mut socket, _)) = listener.accept().await { let packet = packet.clone(); tokio::task::spawn(async move { - // todo: if a client is very slow this blocks the accept loop... let (_, mut writer) = socket.split(); _ = packet.send(&mut writer).await;