comparison src/http/modules/ngx_http_empty_gif_module.c @ 613:c73c5c58c619 release-0.3.28

nginx-0.3.28-RELEASE import *) Feature: the "restrict_host_names" directive was canceled. *) Feature: the --with-cpu-opt=ppc64 configuration parameter. *) Bugfix: on some condition the proxied connection with a client was terminated prematurely. Thanks to Vladimir Shutoff. *) Bugfix: the "X-Accel-Limit-Rate" header line was not taken into account if the request was redirected using the "X-Accel-Redirect" header line. *) Bugfix: the "post_action" directive ran only after a successful completion of a request. *) Bugfix: the proxied response body generated by the "post_action" directive was transferred to a client.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 16 Feb 2006 15:26:46 +0000
parents 326634fb9d47
children 4946078f0a79
comparison
equal deleted inserted replaced
612:182bfe05e2c3 613:c73c5c58c619
146 b->pos = ngx_empty_gif; 146 b->pos = ngx_empty_gif;
147 b->last = ngx_empty_gif + sizeof(ngx_empty_gif); 147 b->last = ngx_empty_gif + sizeof(ngx_empty_gif);
148 b->last_buf = 1; 148 b->last_buf = 1;
149 149
150 r->headers_out.status = NGX_HTTP_OK; 150 r->headers_out.status = NGX_HTTP_OK;
151 r->headers_out.content_length_n = b->last - b->pos; 151 r->headers_out.content_length_n = sizeof(ngx_empty_gif);
152 r->headers_out.last_modified_time = 23349600; 152 r->headers_out.last_modified_time = 23349600;
153 153
154 rc = ngx_http_send_header(r); 154 rc = ngx_http_send_header(r);
155 155
156 if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) { 156 if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {