comparison src/http/ngx_http_core_module.h @ 104:7db96f59bc29

nginx-0.0.1-2003-06-12-09:54:39 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 12 Jun 2003 05:54:39 +0000
parents 6dfda4cf5200
children a9bc21d63fe4
comparison
equal deleted inserted replaced
103:6dfda4cf5200 104:7db96f59bc29
33 33
34 ngx_http_conf_ctx_t *ctx; /* server ctx */ 34 ngx_http_conf_ctx_t *ctx; /* server ctx */
35 35
36 ngx_msec_t post_accept_timeout; 36 ngx_msec_t post_accept_timeout;
37 ssize_t connection_pool_size; 37 ssize_t connection_pool_size;
38 size_t request_pool_size; 38 ssize_t request_pool_size;
39 ngx_msec_t client_header_timeout; 39 ngx_msec_t client_header_timeout;
40 size_t client_header_buffer_size; 40 ssize_t client_header_buffer_size;
41 int large_client_header; 41 int large_client_header;
42 } ngx_http_core_srv_conf_t; 42 } ngx_http_core_srv_conf_t;
43 43
44 44
45 /* list of structures to find core_srv_conf quickly at run time */ 45 /* list of structures to find core_srv_conf quickly at run time */
97 ngx_array_t *types; 97 ngx_array_t *types;
98 ngx_str_t default_type; 98 ngx_str_t default_type;
99 99
100 int sendfile; /* sendfile */ 100 int sendfile; /* sendfile */
101 ngx_msec_t send_timeout; /* send_timeout */ 101 ngx_msec_t send_timeout; /* send_timeout */
102 size_t send_lowat; /* send_lowat */ 102 ssize_t send_lowat; /* send_lowat */
103 size_t discarded_buffer_size; /* discarded_buffer_size */ 103 ssize_t discarded_buffer_size; /* discarded_buffer_size */
104 ngx_msec_t keepalive_timeout; /* keepalive_timeout */ 104 ngx_msec_t keepalive_timeout; /* keepalive_timeout */
105 ngx_msec_t lingering_time; /* lingering_time */ 105 ngx_msec_t lingering_time; /* lingering_time */
106 ngx_msec_t lingering_timeout; /* lingering_timeout */ 106 ngx_msec_t lingering_timeout; /* lingering_timeout */
107 107
108 } ngx_http_core_loc_conf_t; 108 } ngx_http_core_loc_conf_t;