This commit is contained in:
Simon Wicky
2025-09-24 15:14:42 +02:00
parent 7147ba56e2
commit 7bcd3fe754
@@ -922,15 +922,7 @@ impl<R, S> FreshHandler<R, S> {
S: AsyncRead + AsyncWrite + Unpin + Send,
R: CryptoRng + RngCore + Send,
{
let mut loop_iter: usize = 0;
loop {
loop_iter += 1;
debug!(
remote = %self.peer_address,
iteration = loop_iter,
"running loop"
);
let req = self.wait_for_initial_message().await;
let initial_request = match req {
Ok(req) => req,