As per RFC 9000, Section 14.4:
Loss of a QUIC packet that is carried in a PMTU probe is therefore
not a reliable indication of congestion and SHOULD NOT trigger a
congestion control reaction.
goto done;
}
+ if (f->ignore_loss) {
+ ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0,
+ "quic congestion lost ignore t:%M win:%uz if:%uz",
+ now, cg->window, cg->in_flight);
+
+ goto done;
+ }
+
cg->recovery_start = now;
cg->window /= 2;
frame->level = ssl_encryption_application;
frame->type = NGX_QUIC_FT_PING;
+ frame->ignore_loss = 1;
qc = ngx_quic_get_connection(c);
ctx = ngx_quic_get_send_ctx(qc, ssl_encryption_application);
unsigned need_ack:1;
unsigned pkt_need_ack:1;
unsigned ignore_congestion:1;
+ unsigned ignore_loss:1;
ngx_chain_t *data;
union {