This commit is contained in:
2026-05-22 08:40:04 +02:00
parent 749638b75c
commit 777fcf168e
13 changed files with 74 additions and 56 deletions
+6 -4
View File
@@ -42,10 +42,12 @@ pub async fn run_loop(
break;
}
}
message = socket.next() => match handle_socket_message(socket, message, &pending).await {
SocketAction::Break => break,
SocketAction::ClearPongDeadline => awaiting_pong = false,
SocketAction::Continue => {}
message = socket.next() => {
match handle_socket_message(socket, message, &pending).await {
SocketAction::Break => break,
SocketAction::ClearPongDeadline => awaiting_pong = false,
SocketAction::Continue => {}
}
}
}
}