comparison src/http/ngx_http_write_filter_module.c @ 9008:ce6d9cf0f567 quic

Merged with the default branch.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 14 Feb 2022 10:14:07 +0300
parents 61d0fa67b55e 32b0ba4855a6
children
comparison
equal deleted inserted replaced
9007:2dc4203d812c 9008:ce6d9cf0f567
225 return NGX_AGAIN; 225 return NGX_AGAIN;
226 } 226 }
227 227
228 if (size == 0 228 if (size == 0
229 && !(c->buffered & NGX_LOWLEVEL_BUFFERED) 229 && !(c->buffered & NGX_LOWLEVEL_BUFFERED)
230 && !(last && c->need_last_buf)) 230 && !(last && c->need_last_buf)
231 && !(flush && c->need_flush_buf))
231 { 232 {
232 if (last || flush || sync) { 233 if (last || flush || sync) {
233 for (cl = r->out; cl; /* void */) { 234 for (cl = r->out; cl; /* void */) {
234 ln = cl; 235 ln = cl;
235 cl = cl->next; 236 cl = cl->next;