Fixed missing propagation of need_ack flag from frames to packet.
This commit is contained in:
parent
58b439447e
commit
4b40730b18
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue