comparison src/core/nginx.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 371c1cee100d
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
116 ngx_module_t ngx_core_module = { 116 ngx_module_t ngx_core_module = {
117 NGX_MODULE_V1, 117 NGX_MODULE_V1,
118 &ngx_core_module_ctx, /* module context */ 118 &ngx_core_module_ctx, /* module context */
119 ngx_core_commands, /* module directives */ 119 ngx_core_commands, /* module directives */
120 NGX_CORE_MODULE, /* module type */ 120 NGX_CORE_MODULE, /* module type */
121 NULL, /* init master */
121 NULL, /* init module */ 122 NULL, /* init module */
122 NULL /* init process */ 123 NULL, /* init process */
124 NULL, /* init thread */
125 NULL, /* exit thread */
126 NULL, /* exit process */
127 NULL, /* exit master */
128 NGX_MODULE_V1_PADDING
123 }; 129 };
124 130
125 131
126 ngx_uint_t ngx_max_module; 132 ngx_uint_t ngx_max_module;
127 133
151 log = ngx_log_init(); 157 log = ngx_log_init();
152 if (log == NULL) { 158 if (log == NULL) {
153 return 1; 159 return 1;
154 } 160 }
155 161
162 /* STUB */
156 #if (NGX_OPENSSL) 163 #if (NGX_OPENSSL)
157 ngx_ssl_init(log); 164 ngx_ssl_init(log);
158 #endif 165 #endif
159 166
160 /* init_cycle->log is required for signal handlers and ngx_getopt() */ 167 /* init_cycle->log is required for signal handlers and ngx_getopt() */