diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-12-19 08:15:11 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-12-19 08:15:11 +0000 |
commit | e89c4581f4706187052671a8a40dda4fe3e3c391 (patch) | |
tree | 3644c7b95ae7ed7b62d830c62e452b632ac9e89b /src/http/ngx_http.c | |
parent | e3466a4058ec3a6c7915f5239fac9f6bfbb6a29d (diff) | |
download | nginx-e89c4581f4706187052671a8a40dda4fe3e3c391.tar.gz nginx-e89c4581f4706187052671a8a40dda4fe3e3c391.zip |
nginx-0.0.1-2003-12-19-11:15:11 import
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r-- | src/http/ngx_http.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c index 91fa2310b..592e1b6ca 100644 --- a/src/http/ngx_http.c +++ b/src/http/ngx_http.c @@ -8,7 +8,16 @@ static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); -int ngx_http_max_module; +int ngx_http_max_module; + +ngx_uint_t ngx_http_reading_state; +ngx_uint_t ngx_http_processing_state; +ngx_uint_t ngx_http_writing_state; +ngx_uint_t ngx_http_lingering_close_state; +ngx_uint_t ngx_http_keepalive_state; + +ngx_uint_t ngx_http_total_requests; +uint64_t ngx_http_total_sent; int (*ngx_http_top_header_filter) (ngx_http_request_t *r); |