comparison src/core/ngx_log.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 dadfa78d2270
children 458b6c3fea65
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
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;