comparison src/http/ngx_http_core_module.h @ 393:5659d773cfa8

nginx-0.0.7-2004-07-15-20:35:51 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 15 Jul 2004 16:35:51 +0000
parents b670db10cbbd
children f8f0f1834266
comparison
equal deleted inserted replaced
392:d1222d46b3f9 393:5659d773cfa8
45 size_t max_server_name_len; 45 size_t max_server_name_len;
46 } ngx_http_core_main_conf_t; 46 } ngx_http_core_main_conf_t;
47 47
48 48
49 typedef struct { 49 typedef struct {
50 ngx_array_t locations; /* array of ngx_http_core_loc_conf_t, 50 ngx_recv_pt recv;
51 used in the translation handler 51 ngx_send_chain_pt send_chain;
52 and in the merge phase */ 52
53 53 /*
54 ngx_array_t listen; /* 'listen', array of ngx_http_listen_t */ 54 * array of ngx_http_core_loc_conf_t, used in the translation handler
55 ngx_array_t server_names; /* 'server_name', 55 * and in the merge phase
56 array of ngx_http_server_name_t */ 56 */
57 57 ngx_array_t locations;
58 ngx_http_conf_ctx_t *ctx; /* server ctx */ 58
59 59 /* "listen", array of ngx_http_listen_t */
60 size_t connection_pool_size; 60 ngx_array_t listen;
61 size_t request_pool_size; 61
62 size_t client_header_buffer_size; 62 /* "server_name", array of ngx_http_server_name_t */
63 63 ngx_array_t server_names;
64 ngx_msec_t post_accept_timeout; 64
65 ngx_msec_t client_header_timeout; 65 /* server ctx */
66 66 ngx_http_conf_ctx_t *ctx;
67 ngx_uint_t restrict_host_names; 67
68 68 size_t connection_pool_size;
69 ngx_flag_t large_client_header; 69 size_t request_pool_size;
70 size_t client_header_buffer_size;
71
72 ngx_msec_t post_accept_timeout;
73 ngx_msec_t client_header_timeout;
74
75 ngx_uint_t restrict_host_names;
76
77 ngx_flag_t large_client_header;
70 } ngx_http_core_srv_conf_t; 78 } ngx_http_core_srv_conf_t;
71 79
72 80
73 /* list of structures to find core_srv_conf quickly at run time */ 81 /* list of structures to find core_srv_conf quickly at run time */
74 82