comparison src/core/ngx_output_chain.c @ 118:644a7935144b NGINX_0_3_6

nginx 0.3.6 *) 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; bug 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 <http://sysoev.ru>
date Mon, 24 Oct 2005 00:00:00 +0400
parents 818201e5a553
children df17fbafec8f
comparison
equal deleted inserted replaced
117:0821ea4ccfc5 118:644a7935144b
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