comparison src/http/ngx_http.c @ 116:571bcbff82c5

nginx-0.0.1-2003-07-11-08:50:59 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 11 Jul 2003 04:50:59 +0000
parents ac69ab96328d
children cd54bcbaf3b5
comparison
equal deleted inserted replaced
115:be27f922b9a2 116:571bcbff82c5
34 ngx_module_t ngx_http_module = { 34 ngx_module_t ngx_http_module = {
35 NGX_MODULE, 35 NGX_MODULE,
36 &http_name, /* module context */ 36 &http_name, /* module context */
37 ngx_http_commands, /* module directives */ 37 ngx_http_commands, /* module directives */
38 NGX_CORE_MODULE, /* module type */ 38 NGX_CORE_MODULE, /* module type */
39 NULL /* init module */ 39 NULL, /* init module */
40 NULL /* init child */
40 }; 41 };
41 42
42 43
43 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) 44 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
44 { 45 {