comparison src/event/modules/ngx_rtsig_module.c @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) 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 <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents 7fa11e5c6e96
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
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)