Removed outdated TODO.

If required, frame handler can invoke output itself.  There is no need to
call output directly in the payload handler, queuing is enough.
This commit is contained in:
Vladimir Homutov 2020-04-16 13:28:43 +03:00
parent f901747f29
commit d8ab79f6db

View File

@ -1320,7 +1320,6 @@ ngx_quic_payload_handler(ngx_connection_t *c, ngx_quic_header_t *pkt)
ngx_sprintf(ack_frame->info, "ACK for PN=%d from frame handler level=%d", pkt->pn, ack_frame->level);
ngx_quic_queue_frame(qc, ack_frame);
// TODO: call output() after processing some special frames?
return NGX_OK;
}