comparison src/http/ngx_http_cache.h @ 500:ed3d382670c7 NGINX_0_7_62

nginx 0.7.62 *) Security: a segmentation fault might occur in worker process while specially crafted request handling. Thanks to Chris Ries. *) Feature: the $upstream_cache_status variable. *) Bugfix: an expired cached response might stick in the "UPDATING" state. *) Bugfix: a segmentation fault might occur in worker process, if error_log was set to info or debug level. Thanks to Sergey Bochenkov. *) Bugfix: in handling FastCGI headers split in records. *) Bugfix: XSLT filter may fail with message "not well formed XML document" for valid XML document. Thanks to Kuramoto Eiji. *) Bugfix: now in MacOSX, Cygwin, and nginx/Windows locations given by a regular expression are always tested in case insensitive mode. *) Bugfix: now nginx/Windows ignores trailing dots in URI. Thanks to Hugo Leisink. *) Bugfix: name of file specified in --conf-path was not honored during installation; the bug had appeared in 0.6.6. Thanks to Maxim Dounin. *) Bugfix: a 500 error code was returned for invalid login/password while HTTP Basic authentication on Windows.
author Igor Sysoev <http://sysoev.ru>
date Mon, 14 Sep 2009 00:00:00 +0400
parents 116d5de7cbb6
children 89dc5654117c
comparison
equal deleted inserted replaced
499:f2c782e5161f 500:ed3d382670c7
11 #include <ngx_config.h> 11 #include <ngx_config.h>
12 #include <ngx_core.h> 12 #include <ngx_core.h>
13 #include <ngx_http.h> 13 #include <ngx_http.h>
14 14
15 15
16 #define NGX_HTTP_CACHE_STALE 1 16 #define NGX_HTTP_CACHE_MISS 1
17 #define NGX_HTTP_CACHE_UPDATING 2 17 #define NGX_HTTP_CACHE_EXPIRED 2
18 #define NGX_HTTP_CACHE_STALE 3
19 #define NGX_HTTP_CACHE_UPDATING 4
20 #define NGX_HTTP_CACHE_HIT 5
18 21
19 #define NGX_HTTP_CACHE_KEY_LEN 16 22 #define NGX_HTTP_CACHE_KEY_LEN 16
20 23
21 24
22 typedef struct { 25 typedef struct {
122 void ngx_http_file_cache_update(ngx_http_request_t *r, ngx_temp_file_t *tf); 125 void ngx_http_file_cache_update(ngx_http_request_t *r, ngx_temp_file_t *tf);
123 ngx_int_t ngx_http_cache_send(ngx_http_request_t *); 126 ngx_int_t ngx_http_cache_send(ngx_http_request_t *);
124 void ngx_http_file_cache_free(ngx_http_request_t *r, ngx_temp_file_t *tf); 127 void ngx_http_file_cache_free(ngx_http_request_t *r, ngx_temp_file_t *tf);
125 time_t ngx_http_file_cache_valid(ngx_array_t *cache_valid, ngx_uint_t status); 128 time_t ngx_http_file_cache_valid(ngx_array_t *cache_valid, ngx_uint_t status);
126 129
127
128 char *ngx_http_file_cache_set_slot(ngx_conf_t *cf, ngx_command_t *cmd, 130 char *ngx_http_file_cache_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
129 void *conf); 131 void *conf);
130 char *ngx_http_file_cache_valid_set_slot(ngx_conf_t *cf, ngx_command_t *cmd, 132 char *ngx_http_file_cache_valid_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
131 void *conf); 133 void *conf);
132 134
135 extern ngx_str_t ngx_http_cache_status[];
136
133 137
134 #endif /* _NGX_HTTP_CACHE_H_INCLUDED_ */ 138 #endif /* _NGX_HTTP_CACHE_H_INCLUDED_ */