summaryrefslogtreecommitdiffhomepage
path: root/src/http/ngx_http_cache.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-09-07 09:49:51 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-09-07 09:49:51 +0000
commitbfb2447d15e3a3a5076dda1963a27a0a2b61e88e (patch)
tree828f9159e95c000ecbe698b965a8c678ea06275e /src/http/ngx_http_cache.h
parentc8cee16ad74140424eb9758e1bc9dae35f3e5ef2 (diff)
downloadnginx-bfb2447d15e3a3a5076dda1963a27a0a2b61e88e.tar.gz
nginx-bfb2447d15e3a3a5076dda1963a27a0a2b61e88e.tar.bz2
merge r2953, r2958, r3084:
*) $upstream_cache_status *) clean cache updating state if a response has uncacheable code or cache prohibitive headers
Diffstat (limited to 'src/http/ngx_http_cache.h')
-rw-r--r--src/http/ngx_http_cache.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/http/ngx_http_cache.h b/src/http/ngx_http_cache.h
index cf909cc3d..1ee80751d 100644
--- a/src/http/ngx_http_cache.h
+++ b/src/http/ngx_http_cache.h
@@ -13,8 +13,11 @@
#include <ngx_http.h>
-#define NGX_HTTP_CACHE_STALE 1
-#define NGX_HTTP_CACHE_UPDATING 2
+#define NGX_HTTP_CACHE_MISS 1
+#define NGX_HTTP_CACHE_EXPIRED 2
+#define NGX_HTTP_CACHE_STALE 3
+#define NGX_HTTP_CACHE_UPDATING 4
+#define NGX_HTTP_CACHE_HIT 5
#define NGX_HTTP_CACHE_KEY_LEN 16
@@ -124,11 +127,12 @@ ngx_int_t ngx_http_cache_send(ngx_http_request_t *);
void ngx_http_file_cache_free(ngx_http_request_t *r, ngx_temp_file_t *tf);
time_t ngx_http_file_cache_valid(ngx_array_t *cache_valid, ngx_uint_t status);
-
char *ngx_http_file_cache_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
char *ngx_http_file_cache_valid_set_slot(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
+extern ngx_str_t ngx_http_cache_status[];
+
#endif /* _NGX_HTTP_CACHE_H_INCLUDED_ */