comparison src/event/modules/ngx_select_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 45f7329b4bd0
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
65 ngx_module_t ngx_select_module = { 65 ngx_module_t ngx_select_module = {
66 NGX_MODULE_V1, 66 NGX_MODULE_V1,
67 &ngx_select_module_ctx, /* module context */ 67 &ngx_select_module_ctx, /* module context */
68 NULL, /* module directives */ 68 NULL, /* module directives */
69 NGX_EVENT_MODULE, /* module type */ 69 NGX_EVENT_MODULE, /* module type */
70 NULL, /* init master */
70 NULL, /* init module */ 71 NULL, /* init module */
71 NULL /* init process */ 72 NULL, /* init process */
73 NULL, /* init thread */
74 NULL, /* exit thread */
75 NULL, /* exit process */
76 NULL, /* exit master */
77 NGX_MODULE_V1_PADDING
72 }; 78 };
73 79
74 80
75 static ngx_int_t 81 static ngx_int_t
76 ngx_select_init(ngx_cycle_t *cycle) 82 ngx_select_init(ngx_cycle_t *cycle)