comparison src/http/ngx_http_core_module.h @ 95:b48066122884

nginx-0.0.1-2003-05-23-15:53:01 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 23 May 2003 11:53:01 +0000
parents 738fe44c70d5
children a23d010f356d
comparison
equal deleted inserted replaced
94:8220378432a8 95:b48066122884
16 int line; 16 int line;
17 } ngx_http_listen_t; 17 } ngx_http_listen_t;
18 18
19 19
20 typedef struct { 20 typedef struct {
21 int connection_pool_size;
21 int post_accept_timeout; 22 int post_accept_timeout;
22 int connection_pool_size;
23 int request_pool_size;
24 int client_header_timeout;
25 int client_header_buffer_size;
26 int large_client_header;
27 int url_in_error_log;
28 23
29 ngx_array_t servers; /* array of ngx_http_core_srv_conf_t */ 24 ngx_array_t servers; /* array of ngx_http_core_srv_conf_t */
30 } ngx_http_core_main_conf_t; 25 } ngx_http_core_main_conf_t;
31 26
32 27
38 ngx_array_t listen; /* 'listen', array of ngx_http_listen_t */ 33 ngx_array_t listen; /* 'listen', array of ngx_http_listen_t */
39 ngx_array_t server_names; /* 'server_name', 34 ngx_array_t server_names; /* 'server_name',
40 array of ngx_http_server_name_t */ 35 array of ngx_http_server_name_t */
41 36
42 ngx_http_conf_ctx_t *ctx; /* server ctx */ 37 ngx_http_conf_ctx_t *ctx; /* server ctx */
38
39 size_t request_pool_size;
40 ngx_msec_t client_header_timeout;
41 size_t client_header_buffer_size;
42 int large_client_header;
43 } ngx_http_core_srv_conf_t; 43 } ngx_http_core_srv_conf_t;
44 44
45 45
46 /* list of structures to find core_srv_conf quickly at run time */ 46 /* list of structures to find core_srv_conf quickly at run time */
47 47