diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-04-18 20:23:19 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-04-18 20:23:19 +0000 |
commit | e0f866273f276b6d1848ee0f4f9f476c0c68150c (patch) | |
tree | 4382ee5ecd827ee5e700f8f7f204f2ac2208401b /src/http/ngx_http_request.h | |
parent | eb21763fa13fb746987e39a571abbc8a510ae33a (diff) | |
download | nginx-e0f866273f276b6d1848ee0f4f9f476c0c68150c.tar.gz nginx-e0f866273f276b6d1848ee0f4f9f476c0c68150c.zip |
store the upstream states before X-Accel-Redirect to a next upstream
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 939e16960..aac828a41 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -329,6 +329,8 @@ struct ngx_http_request_s { ngx_http_cache_t *cache; ngx_http_upstream_t *upstream; + ngx_array_t *upstream_states; + /* of ngx_http_upstream_state_t */ ngx_pool_t *pool; ngx_buf_t *header_in; |