comparison src/core/ngx_log.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 818201e5a553
children e85dca77c46a
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
35 ngx_module_t ngx_errlog_module = { 35 ngx_module_t ngx_errlog_module = {
36 NGX_MODULE_V1, 36 NGX_MODULE_V1,
37 &ngx_errlog_module_ctx, /* module context */ 37 &ngx_errlog_module_ctx, /* module context */
38 ngx_errlog_commands, /* module directives */ 38 ngx_errlog_commands, /* module directives */
39 NGX_CORE_MODULE, /* module type */ 39 NGX_CORE_MODULE, /* module type */
40 NULL, /* init master */
40 NULL, /* init module */ 41 NULL, /* init module */
41 NULL /* init process */ 42 NULL, /* init process */
43 NULL, /* init thread */
44 NULL, /* exit thread */
45 NULL, /* exit process */
46 NULL, /* exit master */
47 NGX_MODULE_V1_PADDING
42 }; 48 };
43 49
44 50
45 static ngx_log_t ngx_log; 51 static ngx_log_t ngx_log;
46 static ngx_open_file_t ngx_stderr; 52 static ngx_open_file_t ngx_stderr;