diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-06-22 10:12:00 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2009-06-22 10:12:00 +0000 |
commit | 54ac043bb002bc99c210332a03a4bd67466f79ac (patch) | |
tree | b141e126b533e675b9ee474788efc324af7ed5dd /src/http/ngx_http_request.c | |
parent | 1b271801c3e9b1464a24c2ab3e104b7b2fb530a6 (diff) | |
download | nginx-0.6.38.tar.gz |
Changes with nginx 0.6.38 22 Jun 2009v0.6.38
*) Feature: the "keepalive_requests" directive.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index f7c2ffa46..f762a033f 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -253,6 +253,8 @@ ngx_http_init_request(ngx_event_t *rev) return; } + c->requests++; + hc = c->data; if (hc == NULL) { |