From 207ed5a589055899a5841d1a9f3074fc4ff407c5 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 26 Dec 2002 16:26:23 +0000 Subject: nginx-0.0.1-2002-12-26-19:26:23 import --- src/core/ngx_modules.c | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'src/core/ngx_modules.c') diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index 5b814baf9..4d43349f3 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -1,15 +1,19 @@ -#include +#include -extern ngx_http_module_t ngx_http_header_filter_module; -extern ngx_http_module_t ngx_http_write_filter_module; -extern ngx_http_module_t ngx_http_output_filter_module; +extern ngx_module_t ngx_http_header_filter_module; -extern ngx_http_module_t ngx_http_core_module; -extern ngx_http_module_t ngx_http_index_module; +extern ngx_module_t ngx_http_write_filter_module; +extern ngx_module_t ngx_http_output_filter_module; -ngx_http_module_t *ngx_http_modules[] = { +extern ngx_module_t ngx_http_core_module; +extern ngx_module_t ngx_http_index_module; + +extern ngx_module_t ngx_http_module; + + +ngx_module_t *ngx_modules[] = { &ngx_http_header_filter_module, @@ -19,5 +23,7 @@ ngx_http_module_t *ngx_http_modules[] = { &ngx_http_index_module, &ngx_http_core_module, + &ngx_http_module, + NULL }; -- cgit v1.2.3