comparison src/event/modules/ngx_aio_module.c @ 90:71c46860eb55 NGINX_0_1_45

nginx 0.1.45 *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <http://sysoev.ru>
date Thu, 08 Sep 2005 00:00:00 +0400
parents b55cbf18157e
children 408f195b3482
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
56 ngx_module_t ngx_aio_module = { 56 ngx_module_t ngx_aio_module = {
57 NGX_MODULE_V1, 57 NGX_MODULE_V1,
58 &ngx_aio_module_ctx, /* module context */ 58 &ngx_aio_module_ctx, /* module context */
59 NULL, /* module directives */ 59 NULL, /* module directives */
60 NGX_EVENT_MODULE, /* module type */ 60 NGX_EVENT_MODULE, /* module type */
61 NULL, /* init master */
61 NULL, /* init module */ 62 NULL, /* init module */
62 NULL /* init process */ 63 NULL, /* init process */
64 NULL, /* init thread */
65 NULL, /* exit thread */
66 NULL, /* exit process */
67 NULL, /* exit master */
68 NGX_MODULE_V1_PADDING
63 }; 69 };
64 70
65 71
66 72
67 #if (NGX_HAVE_KQUEUE) 73 #if (NGX_HAVE_KQUEUE)