remove false comment

This commit is contained in:
soruh 2023-09-03 13:31:09 +02:00
parent 4ad5504004
commit c2c31a1410

View File

@ -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;