mirror of
https://github.com/nginx/nginx.git
synced 2025-02-25 18:55:26 -06:00
Fixed missing propagation of need_ack flag from frames to packet.
This commit is contained in:
parent
932bfe7b36
commit
723c276a7b
@ -1657,6 +1657,10 @@ ngx_quic_send_frames(ngx_connection_t *c, ngx_queue_t *frames)
|
|||||||
return NGX_ERROR;
|
return NGX_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (f->need_ack) {
|
||||||
|
pkt.need_ack = 1;
|
||||||
|
}
|
||||||
|
|
||||||
p += len;
|
p += len;
|
||||||
f->pnum = ns->pnum;
|
f->pnum = ns->pnum;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user