comparison src/core/ngx_output_chain.c @ 569:174f1e853e1e release-0.3.6

nginx-0.3.6-RELEASE import *) Change: now the IMAP/POP3 proxy do not send the empty login to authorization server. *) Feature: the "log_format" supports the variables in the $name form. *) Bugfix: if at least in one server was no the "listen" directive, then nginx did not listen on the 80 port; the bug had appeared in 0.3.3. *) Bugfix: if the URI part is omitted in "proxy_pass" directive, the the 80 port was always used.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 24 Oct 2005 15:09:41 +0000
parents dadfa78d2270
children 4d9ea73a627a
comparison
equal deleted inserted replaced
568:91e400506e99 569:174f1e853e1e
210 return last; 210 return last;
211 } 211 }
212 212
213 last = ctx->output_filter(ctx->filter_ctx, out); 213 last = ctx->output_filter(ctx->filter_ctx, out);
214 214
215 if (last == NGX_ERROR || last == NGX_DONE) {
216 return last;
217 }
218
215 ngx_chain_update_chains(&ctx->free, &ctx->busy, &out, ctx->tag); 219 ngx_chain_update_chains(&ctx->free, &ctx->busy, &out, ctx->tag);
216 last_out = &out; 220 last_out = &out;
217
218 if (last == NGX_ERROR) {
219 return last;
220 }
221 } 221 }
222 } 222 }
223 223
224 224
225 static ngx_inline ngx_int_t 225 static ngx_inline ngx_int_t