Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-07-15 20:35:51 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-07-15 20:35:51 +0400
commit1c3567ecc81a9f07f3c3d53912114bc5bd5daffa (patch)
treeba0b57b32bb1232af3fad0ff38375df9e498ec66 /src/http/ngx_http_core_module.h
parent4aa888820d3f13a225ee6bdd596305ea3b4db6f4 (diff)
nginx-0.0.7-2004-07-15-20:35:51 import
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r--src/http/ngx_http_core_module.h36
1 files changed, 22 insertions, 14 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h
index 051486a22..98e020b1f 100644
--- a/src/http/ngx_http_core_module.h
+++ b/src/http/ngx_http_core_module.h
@@ -47,26 +47,34 @@ typedef struct {
typedef struct {
- ngx_array_t locations; /* array of ngx_http_core_loc_conf_t,
- used in the translation handler
- and in the merge phase */
+ ngx_recv_pt recv;
+ ngx_send_chain_pt send_chain;
- ngx_array_t listen; /* 'listen', array of ngx_http_listen_t */
- ngx_array_t server_names; /* 'server_name',
- array of ngx_http_server_name_t */
+ /*
+ * array of ngx_http_core_loc_conf_t, used in the translation handler
+ * and in the merge phase
+ */
+ ngx_array_t locations;
- ngx_http_conf_ctx_t *ctx; /* server ctx */
+ /* "listen", array of ngx_http_listen_t */
+ ngx_array_t listen;
- size_t connection_pool_size;
- size_t request_pool_size;
- size_t client_header_buffer_size;
+ /* "server_name", array of ngx_http_server_name_t */
+ ngx_array_t server_names;
- ngx_msec_t post_accept_timeout;
- ngx_msec_t client_header_timeout;
+ /* server ctx */
+ ngx_http_conf_ctx_t *ctx;
- ngx_uint_t restrict_host_names;
+ size_t connection_pool_size;
+ size_t request_pool_size;
+ size_t client_header_buffer_size;
- ngx_flag_t large_client_header;
+ ngx_msec_t post_accept_timeout;
+ ngx_msec_t client_header_timeout;
+
+ ngx_uint_t restrict_host_names;
+
+ ngx_flag_t large_client_header;
} ngx_http_core_srv_conf_t;