comparison src/core/ngx_modules.c @ 40:d5d4f3bba6f0

nginx-0.0.1-2002-12-26-10:24:21 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 26 Dec 2002 07:24:21 +0000
parents src/http/ngx_http_modules.c@53cb81681040
children 59e7c7f30d49
comparison
equal deleted inserted replaced
39:83fa61cd3d2f 40:d5d4f3bba6f0
1
2 #include <ngx_http.h>
3
4 extern ngx_http_module_t ngx_http_header_filter_module;
5
6 extern ngx_http_module_t ngx_http_write_filter_module;
7 extern ngx_http_module_t ngx_http_output_filter_module;
8
9 extern ngx_http_module_t ngx_http_core_module;
10 extern ngx_http_module_t ngx_http_index_module;
11
12 ngx_http_module_t *ngx_http_modules[] = {
13
14 &ngx_http_header_filter_module,
15
16 &ngx_http_write_filter_module,
17 &ngx_http_output_filter_module,
18
19 &ngx_http_index_module,
20 &ngx_http_core_module,
21
22 NULL
23 };