Welcome! Log In Create A New Profile

Advanced

[PATCH 1 of 2] Cache: fix sending of empty

Maxim Dounin
January 15, 2010 01:30PM
# HG changeset patch
# User Maxim Dounin <mdounin@mdounin.ru>
# Date 1263576719 -10800
# Node ID 065ce686b20763357a61f52f6e4a2e07351fee6b
# Parent 0a974cceb9de159f2daafecf6858518db4688224
Cache: fix sending of empty.

Revert wrong fix for empty responses introduced in 0.8.31 and apply new one,
rewritten to match things done by static module as close as possible.

diff --git a/src/http/ngx_http_file_cache.c b/src/http/ngx_http_file_cache.c
--- a/src/http/ngx_http_file_cache.c
+++ b/src/http/ngx_http_file_cache.c
@@ -793,6 +793,10 @@ ngx_http_cache_send(ngx_http_request_t *
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"http file cache send: %s", c->file.name.data);

+ if (r != r->main && c->length - c->body_start == 0) {
+ return ngx_http_send_header(r);
+ }
+
/* we need to allocate all before the header would be sent */

b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t));
@@ -805,8 +809,6 @@ ngx_http_cache_send(ngx_http_request_t *
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}

- r->header_only = (c->length - c->body_start) == 0;
-
rc = ngx_http_send_header(r);

if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
@@ -816,7 +818,7 @@ ngx_http_cache_send(ngx_http_request_t *
b->file_pos = c->body_start;
b->file_last = c->length;

- b->in_file = 1;
+ b->in_file = (c->length - c->body_start) ? 1: 0;
b->last_buf = (r == r->main) ? 1: 0;
b->last_in_chain = 1;


_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[PATCH 0 of 2] cache fixes for empty and stale responses

Maxim Dounin 3138 January 15, 2010 01:30PM

[PATCH 1 of 2] Cache: fix sending of empty

Maxim Dounin 1128 January 15, 2010 01:30PM

[PATCH 2 of 2] Cache: fix sending of stale responses

Maxim Dounin 1190 January 15, 2010 01:30PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 298
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready