comparison src/http/ngx_http.c @ 213:f536f91e8e99

nginx-0.0.1-2003-12-19-15:45:27 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Dec 2003 12:45:27 +0000
parents 679f60139863
children f1d0e5f09c1e
comparison
equal deleted inserted replaced
212:679f60139863 213:f536f91e8e99
7 7
8 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); 8 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
9 9
10 10
11 int ngx_http_max_module; 11 int ngx_http_max_module;
12
13 ngx_uint_t ngx_http_reading_state;
14 ngx_uint_t ngx_http_processing_state;
15 ngx_uint_t ngx_http_writing_state;
16 ngx_uint_t ngx_http_lingering_close_state;
17 ngx_uint_t ngx_http_keepalive_state;
18 12
19 ngx_uint_t ngx_http_total_requests; 13 ngx_uint_t ngx_http_total_requests;
20 uint64_t ngx_http_total_sent; 14 uint64_t ngx_http_total_sent;
21 15
22 16