comparison src/http/ngx_http_core_module.h @ 103:6dfda4cf5200

nginx-0.0.1-2003-06-11-19:28:34 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 11 Jun 2003 15:28:34 +0000
parents 70d2345a903f
children 7db96f59bc29
comparison
equal deleted inserted replaced
102:7e86d028d8f0 103:6dfda4cf5200
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;
22 int post_accept_timeout;
23
24 ngx_array_t servers; /* array of ngx_http_core_srv_conf_t */ 21 ngx_array_t servers; /* array of ngx_http_core_srv_conf_t */
25 } ngx_http_core_main_conf_t; 22 } ngx_http_core_main_conf_t;
26 23
27 24
28 typedef struct { 25 typedef struct {
34 ngx_array_t server_names; /* 'server_name', 31 ngx_array_t server_names; /* 'server_name',
35 array of ngx_http_server_name_t */ 32 array of ngx_http_server_name_t */
36 33
37 ngx_http_conf_ctx_t *ctx; /* server ctx */ 34 ngx_http_conf_ctx_t *ctx; /* server ctx */
38 35
36 ngx_msec_t post_accept_timeout;
37 ssize_t connection_pool_size;
39 size_t request_pool_size; 38 size_t request_pool_size;
40 ngx_msec_t client_header_timeout; 39 ngx_msec_t client_header_timeout;
41 size_t client_header_buffer_size; 40 size_t client_header_buffer_size;
42 int large_client_header; 41 int large_client_header;
43 } ngx_http_core_srv_conf_t; 42 } ngx_http_core_srv_conf_t;