diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-06-06 14:59:20 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-06-06 14:59:20 +0000 |
commit | e4a2526e5ccd4f3f5f160656c1a7b6f865ac44c8 (patch) | |
tree | bfa99dbe2be9b41364c325bf1d990958c93247f8 /src/core/ngx_modules.c | |
parent | 9cf783074fd7793ebb6859e7f62b054d79074efe (diff) | |
download | nginx-e4a2526e5ccd4f3f5f160656c1a7b6f865ac44c8.tar.gz nginx-e4a2526e5ccd4f3f5f160656c1a7b6f865ac44c8.zip |
nginx-0.0.1-2003-06-06-18:59:20 import
Diffstat (limited to 'src/core/ngx_modules.c')
-rw-r--r-- | src/core/ngx_modules.c | 8 |
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 */ |