diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2007-07-13 08:30:34 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2007-07-13 08:30:34 +0000 |
| commit | fbd9b4399f6bb15b63f8641494730096bdec91aa (patch) | |
| tree | f9cb6af113c00c5b683436ef820449326618e621 /src/http/ngx_http_upstream.h | |
| parent | 852e458014b8b7c21d75f7ece9a0b605e5b070ff (diff) | |
| download | nginx-fbd9b4399f6bb15b63f8641494730096bdec91aa.tar.gz nginx-fbd9b4399f6bb15b63f8641494730096bdec91aa.tar.bz2 | |
proxy_store and fastcgi_store were changed,
proxy_store_access and fastcgi_store_access were added
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_upstream.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index 4ba38ec0f..b3bb1b4fd 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -118,7 +118,7 @@ typedef struct { size_t temp_file_write_size_conf; ngx_uint_t next_upstream; - ngx_uint_t store; + ngx_uint_t store_access; ngx_bufs_t bufs; @@ -141,6 +141,10 @@ typedef struct { ngx_str_t location; ngx_str_t url; /* used in proxy_rewrite_location */ + ngx_array_t *store_lengths; + ngx_array_t *store_values; + + signed store:2; unsigned intercept_404:1; unsigned change_buffering:1; |
