comparison src/core/nginx.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
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() */