comparison src/event/modules/ngx_rtsig_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 da9a3b14312d
children 45945fa8b8ba
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
120 ngx_module_t ngx_rtsig_module = { 120 ngx_module_t ngx_rtsig_module = {
121 NGX_MODULE_V1, 121 NGX_MODULE_V1,
122 &ngx_rtsig_module_ctx, /* module context */ 122 &ngx_rtsig_module_ctx, /* module context */
123 ngx_rtsig_commands, /* module directives */ 123 ngx_rtsig_commands, /* module directives */
124 NGX_EVENT_MODULE, /* module type */ 124 NGX_EVENT_MODULE, /* module type */
125 NULL, /* init master */
125 NULL, /* init module */ 126 NULL, /* init module */
126 NULL /* init process */ 127 NULL, /* init process */
128 NULL, /* init thread */
129 NULL, /* exit thread */
130 NULL, /* exit process */
131 NULL, /* exit master */
132 NGX_MODULE_V1_PADDING
127 }; 133 };
128 134
129 135
130 static ngx_int_t 136 static ngx_int_t
131 ngx_rtsig_init(ngx_cycle_t *cycle) 137 ngx_rtsig_init(ngx_cycle_t *cycle)