comparison src/http/ngx_http_copy_filter_module.c @ 426:e7dbea1ee115 NGINX_0_7_25

nginx 0.7.25 *) Change: in subrequest processing. *) Change: now POSTs without "Content-Length" header line are allowed. *) Bugfix: now the "limit_req" and "limit_conn" directives log a prohibition reason. *) Bugfix: in the "delete" parameter of the "geo" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 08 Dec 2008 00:00:00 +0300
parents 9121a0a91f47
children 86dad910eeb6
comparison
equal deleted inserted replaced
425:f64d9e30046c 426:e7dbea1ee115
115 r->buffered &= ~NGX_HTTP_COPY_BUFFERED; 115 r->buffered &= ~NGX_HTTP_COPY_BUFFERED;
116 } else { 116 } else {
117 r->buffered |= NGX_HTTP_COPY_BUFFERED; 117 r->buffered |= NGX_HTTP_COPY_BUFFERED;
118 } 118 }
119 119
120 if (r != r->main) {
121 r->out = ctx->in;
122 }
123
124 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 120 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
125 "copy filter: %i \"%V?%V\"", rc, &r->uri, &r->args); 121 "copy filter: %i \"%V?%V\"", rc, &r->uri, &r->args);
126 } 122 }
127 123
128 return rc; 124 return rc;