From e4a2526e5ccd4f3f5f160656c1a7b6f865ac44c8 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 6 Jun 2003 14:59:20 +0000 Subject: nginx-0.0.1-2003-06-06-18:59:20 import --- src/core/ngx_modules.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/core/ngx_modules.c') diff --git a/src/core/ngx_modules.c b/src/core/ngx_modules.c index b25c413e1..4780570bc 100644 --- a/src/core/ngx_modules.c +++ b/src/core/ngx_modules.c @@ -4,9 +4,9 @@ extern ngx_module_t ngx_errlog_module; + extern ngx_module_t ngx_events_module; extern ngx_module_t ngx_event_module; - extern ngx_module_t ngx_select_module; #if (HAVE_POLL) extern ngx_module_t ngx_poll_module; @@ -20,6 +20,9 @@ extern ngx_module_t ngx_devpoll_module; #if (HAVE_AIO) extern ngx_module_t ngx_aio_module; #endif +#if (HAVE_IOCP) +extern ngx_module_t ngx_iocp_module; +#endif extern ngx_module_t ngx_http_module; @@ -64,6 +67,9 @@ ngx_module_t *ngx_modules[] = { #if (HAVE_AIO) &ngx_aio_module, #endif +#if (HAVE_IOCP) + &ngx_iocp_module, +#endif /* http */ -- cgit v1.2.3