comparison src/http/ngx_http_core_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 e916a291e9aa
children 45945fa8b8ba
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
381 ngx_module_t ngx_http_core_module = { 381 ngx_module_t ngx_http_core_module = {
382 NGX_MODULE_V1, 382 NGX_MODULE_V1,
383 &ngx_http_core_module_ctx, /* module context */ 383 &ngx_http_core_module_ctx, /* module context */
384 ngx_http_core_commands, /* module directives */ 384 ngx_http_core_commands, /* module directives */
385 NGX_HTTP_MODULE, /* module type */ 385 NGX_HTTP_MODULE, /* module type */
386 NULL, /* init master */
386 NULL, /* init module */ 387 NULL, /* init module */
387 NULL /* init process */ 388 NULL, /* init process */
389 NULL, /* init thread */
390 NULL, /* exit thread */
391 NULL, /* exit process */
392 NULL, /* exit master */
393 NGX_MODULE_V1_PADDING
388 }; 394 };
389 395
390 396
391 void 397 void
392 ngx_http_handler(ngx_http_request_t *r) 398 ngx_http_handler(ngx_http_request_t *r)