diff options
author | Valentin Bartenev <vbart@nginx.com> | 2013-03-01 14:55:42 +0000 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2013-03-01 14:55:42 +0000 |
commit | fcf003c6f4a5a7c885de0befcd45f4acddefb47b (patch) | |
tree | 4733bfd32013cae54f2f3b6e504b50f04d375d77 /src/http/ngx_http_request.h | |
parent | b720f650bb72118481884657fb6a9bcb1b0f3b11 (diff) | |
download | nginx-fcf003c6f4a5a7c885de0befcd45f4acddefb47b.tar.gz nginx-fcf003c6f4a5a7c885de0befcd45f4acddefb47b.zip |
Allocate request object from its own pool.
Previously, it was allocated from a connection pool and
was selectively freed for an idle keepalive connection.
The goal is to put coupled things in one chunk of memory,
and to simplify handling of request objects.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 6ddf08e30..fd004e8f1 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -302,8 +302,6 @@ typedef struct { #endif #endif - ngx_http_request_t *request; - ngx_buf_t **busy; ngx_int_t nbusy; |