comparison src/http/ngx_http.c @ 2023:7d58e319285e

axe never used variables
author Igor Sysoev <igor@sysoev.ru>
date Thu, 22 May 2008 11:11:16 +0000
parents 35b35b84f5ef
children 638bbe2464f3
comparison
equal deleted inserted replaced
2022:35b35b84f5ef 2023:7d58e319285e
38 38
39 static ngx_int_t ngx_http_init_listening(ngx_conf_t *cf, 39 static ngx_int_t ngx_http_init_listening(ngx_conf_t *cf,
40 ngx_http_conf_in_port_t *in_port); 40 ngx_http_conf_in_port_t *in_port);
41 41
42 ngx_uint_t ngx_http_max_module; 42 ngx_uint_t ngx_http_max_module;
43
44 ngx_uint_t ngx_http_total_requests;
45 uint64_t ngx_http_total_sent;
46 43
47 44
48 ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r); 45 ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r);
49 ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch); 46 ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
50 47