From: Vladimir Homutov Date: Fri, 3 Apr 2020 06:53:51 +0000 (+0300) Subject: Fixed missing propagation of need_ack flag from frames to packet. X-Git-Tag: release-1.25.0~4^2~797 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=723c276a7bb97fe8c4bd17839d5eb34ea2683e97;p=nginx.git Fixed missing propagation of need_ack flag from frames to packet. --- diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 3c1097455..9cb26261e 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1657,6 +1657,10 @@ ngx_quic_send_frames(ngx_connection_t *c, ngx_queue_t *frames) return NGX_ERROR; } + if (f->need_ack) { + pkt.need_ack = 1; + } + p += len; f->pnum = ns->pnum; }