comparison src/core/ngx_log.h @ 372:6639b93e81b2 NGINX_0_6_30

nginx 0.6.30 *) Change: now if an "include" directive pattern does not match any file, then nginx does not issue an error. *) Feature: now the time in directives may be specified without spaces, for example, "1h50m". *) Bugfix: memory leaks if the "ssl_verify_client" directive was on. Thanks to Chavelle Vincent. *) Bugfix: the "sub_filter" directive might set text to change into output. *) Bugfix: the "error_page" directive did not take into account arguments in redirected URI. *) Bugfix: now nginx always opens files in binary mode under Cygwin. *) Bugfix: nginx could not be built on OpenBSD; bug appeared in 0.6.15.
author Igor Sysoev <http://sysoev.ru>
date Tue, 29 Apr 2008 00:00:00 +0400
parents f745bf973510
children 1878e9c00f22
comparison
equal deleted inserted replaced
371:b6a2a305fdad 372:6639b93e81b2
193 193
194 #endif 194 #endif
195 195
196 /*********************************/ 196 /*********************************/
197 197
198 #define ngx_log_alloc_log(pool, log) ngx_palloc(pool, log, sizeof(ngx_log_t))
199 #define ngx_log_copy_log(new, old) ngx_memcpy(new, old, sizeof(ngx_log_t))
200
201 ngx_log_t *ngx_log_init(void); 198 ngx_log_t *ngx_log_init(void);
202 ngx_log_t *ngx_log_create_errlog(ngx_cycle_t *cycle, ngx_array_t *args); 199 ngx_log_t *ngx_log_create_errlog(ngx_cycle_t *cycle, ngx_array_t *args);
203 char *ngx_set_error_log_levels(ngx_conf_t *cf, ngx_log_t *log); 200 char *ngx_set_error_log_levels(ngx_conf_t *cf, ngx_log_t *log);
204 void ngx_log_abort(ngx_err_t err, const char *text); 201 void ngx_log_abort(ngx_err_t err, const char *text);
205 202