From 42feecbdb694e114e034f0be67d19bba4165c363 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Sun, 15 Dec 2002 06:25:09 +0000 Subject: nginx-0.0.1-2002-12-15-09:25:09 import --- src/http/ngx_http_modules.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/http/ngx_http_modules.c') diff --git a/src/http/ngx_http_modules.c b/src/http/ngx_http_modules.c index d8977ef3e..5b814baf9 100644 --- a/src/http/ngx_http_modules.c +++ b/src/http/ngx_http_modules.c @@ -1,12 +1,18 @@ #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_http_module_t ngx_http_core_module; extern ngx_http_module_t ngx_http_index_module; ngx_http_module_t *ngx_http_modules[] = { + + &ngx_http_header_filter_module, + &ngx_http_write_filter_module, &ngx_http_output_filter_module, -- cgit