comparison src/http/ngx_http.c @ 212:679f60139863

nginx-0.0.1-2003-12-19-11:15:11 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 19 Dec 2003 08:15:11 +0000
parents 267ea1d98683
children f536f91e8e99
comparison
equal deleted inserted replaced
211:fd9fecc4193f 212:679f60139863
6 6
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
19 ngx_uint_t ngx_http_total_requests;
20 uint64_t ngx_http_total_sent;
12 21
13 22
14 int (*ngx_http_top_header_filter) (ngx_http_request_t *r); 23 int (*ngx_http_top_header_filter) (ngx_http_request_t *r);
15 int (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch); 24 int (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
16 25