comparison src/http/ngx_http_script.c @ 532:f7ec98e3caeb NGINX_0_8_18

nginx 0.8.18 *) Feature: the "read_ahead" directive. *) Feature: now several "perl_modules" directive may be used. *) Feature: the "limit_req_log_level" and "limit_conn_log_level" directives. *) Bugfix: now "limit_req" directive conforms to the leaky bucket algorithm. Thanks to Maxim Dounin. *) Bugfix: nginx did not work on Linux/sparc. Thanks to Marcus Ramberg. *) Bugfix: nginx sent '\0' in a "Location" response header line on MKCOL request. Thanks to Xie Zhenye. *) Bugfix: zero status code was logged instead of 499 status code; the bug had appeared in 0.8.11. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Tue, 06 Oct 2009 00:00:00 +0400
parents 4c5d2c627a6c
children e19e5f542878
comparison
equal deleted inserted replaced
531:7688992d2abb 532:f7ec98e3caeb
1405 1405
1406 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 1406 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1407 1407
1408 ngx_memzero(&of, sizeof(ngx_open_file_info_t)); 1408 ngx_memzero(&of, sizeof(ngx_open_file_info_t));
1409 1409
1410 of.read_ahead = clcf->read_ahead;
1410 of.directio = clcf->directio; 1411 of.directio = clcf->directio;
1411 of.valid = clcf->open_file_cache_valid; 1412 of.valid = clcf->open_file_cache_valid;
1412 of.min_uses = clcf->open_file_cache_min_uses; 1413 of.min_uses = clcf->open_file_cache_min_uses;
1413 of.test_only = 1; 1414 of.test_only = 1;
1414 of.errors = clcf->open_file_cache_errors; 1415 of.errors = clcf->open_file_cache_errors;