comparison src/event/ngx_event.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 45945fa8b8ba
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
93 ngx_module_t ngx_events_module = { 93 ngx_module_t ngx_events_module = {
94 NGX_MODULE_V1, 94 NGX_MODULE_V1,
95 &ngx_events_module_ctx, /* module context */ 95 &ngx_events_module_ctx, /* module context */
96 ngx_events_commands, /* module directives */ 96 ngx_events_commands, /* module directives */
97 NGX_CORE_MODULE, /* module type */ 97 NGX_CORE_MODULE, /* module type */
98 NULL, /* init master */
98 NULL, /* init module */ 99 NULL, /* init module */
99 NULL /* init process */ 100 NULL, /* init process */
101 NULL, /* init thread */
102 NULL, /* exit thread */
103 NULL, /* exit process */
104 NULL, /* exit master */
105 NGX_MODULE_V1_PADDING
100 }; 106 };
101 107
102 108
103 static ngx_str_t event_core_name = ngx_string("event_core"); 109 static ngx_str_t event_core_name = ngx_string("event_core");
104 110
165 ngx_module_t ngx_event_core_module = { 171 ngx_module_t ngx_event_core_module = {
166 NGX_MODULE_V1, 172 NGX_MODULE_V1,
167 &ngx_event_core_module_ctx, /* module context */ 173 &ngx_event_core_module_ctx, /* module context */
168 ngx_event_core_commands, /* module directives */ 174 ngx_event_core_commands, /* module directives */
169 NGX_EVENT_MODULE, /* module type */ 175 NGX_EVENT_MODULE, /* module type */
176 NULL, /* init master */
170 ngx_event_module_init, /* init module */ 177 ngx_event_module_init, /* init module */
171 ngx_event_process_init /* init process */ 178 ngx_event_process_init, /* init process */
179 NULL, /* init thread */
180 NULL, /* exit thread */
181 NULL, /* exit process */
182 NULL, /* exit master */
183 NGX_MODULE_V1_PADDING
172 }; 184 };
173 185
174 186
175 ngx_int_t 187 ngx_int_t
176 ngx_handle_read_event(ngx_event_t *rev, u_int flags) 188 ngx_handle_read_event(ngx_event_t *rev, u_int flags)