MINOR: quic: Do not retransmit too much packets.
We retranmist at most one datagram and possibly one more with only PING frame
as ack-eliciting frame.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c
index bec37ac..a506667 100644
--- a/src/xprt_quic.c
+++ b/src/xprt_quic.c
@@ -3518,13 +3518,10 @@
}
for (i = QUIC_TLS_ENC_LEVEL_INITIAL; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
- int j;
-
if (i == QUIC_TLS_ENC_LEVEL_APP && !quic_peer_validated_addr(qc))
continue;
- for (j = 0; j < qc->els[i].pktns->tx.pto_probe; j++)
- qc_prep_fast_retrans(&qc->els[i], qc);
+ qc_prep_fast_retrans(&qc->els[i], qc);
}
tasklet_wakeup(conn_ctx->wait_event.tasklet);