comparison src/event/quic/ngx_event_quic_output.c @ 9143:48691bab4474

QUIC: fixed probe-congestion deadlock. When probe timeout expired while congestion window was exhausted, probe PINGs could not be sent. As a result, lost packets could not be declared lost and congestion window could not be freed for new packets. This deadlock continued until connection idle timeout expiration. Now PINGs are sent separately from the frame queue without congestion control, as specified by RFC 9002, Section 7: An endpoint MUST NOT send a packet if it would cause bytes_in_flight (see Appendix B.2) to be larger than the congestion window, unless the packet is sent on a PTO timer expiration (see Section 6.2) or when entering recovery (see Section 7.3.2).
author Roman Arutyunyan <arut@nginx.com>
date Mon, 14 Aug 2023 08:28:30 +0400
parents e9a003d40485
children bba136612fe4
comparison
equal deleted inserted replaced
9142:7e8ee4b7cbf4 9143:48691bab4474
629 f->first = now; 629 f->first = now;
630 f->last = now; 630 f->last = now;
631 f->plen = 0; 631 f->plen = 0;
632 632
633 nframes++; 633 nframes++;
634
635 if (f->flush) {
636 break;
637 }
638 } 634 }
639 635
640 if (nframes == 0) { 636 if (nframes == 0) {
641 return 0; 637 return 0;
642 } 638 }