aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_modules.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r--src/core/ngx_modules.c8
1 files changed, 7 insertions, 1 deletions
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 */