aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_modules.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-05-16 15:27:48 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-05-16 15:27:48 +0000
commitbb4ec5c1721defd7b10f83ace51bddb71726dd1a (patch)
tree408036d662e5e14a56e8ccd42e2d20a73a0b2cd0 /src/core/ngx_modules.c
parent6ddfbf06625eca15ddf24ac95b755cdc9db32bfa (diff)
downloadnginx-bb4ec5c1721defd7b10f83ace51bddb71726dd1a.tar.gz
nginx-bb4ec5c1721defd7b10f83ace51bddb71726dd1a.zip
nginx-0.0.1-2003-05-16-19:27:48 import
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r--src/core/ngx_modules.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c
index a6b56c586..273c5550e 100644
--- a/src/core/ngx_modules.c
+++ b/src/core/ngx_modules.c
@@ -4,6 +4,10 @@
#include <ngx_conf_file.h>
+extern ngx_module_t ngx_events_module;
+extern ngx_module_t ngx_event_module;
+
+
extern ngx_module_t ngx_http_module;
extern ngx_module_t ngx_http_core_module;
@@ -17,6 +21,13 @@ extern ngx_module_t ngx_http_proxy_module;
ngx_module_t *ngx_modules[] = {
+ /* events */
+
+ &ngx_events_module,
+ &ngx_event_module,
+
+ /* http */
+
&ngx_http_module,
&ngx_http_core_module,