comparison src/http/modules/ngx_http_static_module.c @ 2129:25add486e7aa

directio
author Igor Sysoev <igor@sysoev.ru>
date Wed, 30 Jul 2008 12:34:04 +0000
parents c8039b26a949
children 23309bcd9937
comparison
equal deleted inserted replaced
2128:345a014436d4 2129:25add486e7aa
96 96
97 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 97 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
98 98
99 ngx_memzero(&of, sizeof(ngx_open_file_info_t)); 99 ngx_memzero(&of, sizeof(ngx_open_file_info_t));
100 100
101 of.directio = clcf->directio;
101 of.valid = clcf->open_file_cache_valid; 102 of.valid = clcf->open_file_cache_valid;
102 of.min_uses = clcf->open_file_cache_min_uses; 103 of.min_uses = clcf->open_file_cache_min_uses;
103 of.errors = clcf->open_file_cache_errors; 104 of.errors = clcf->open_file_cache_errors;
104 of.events = clcf->open_file_cache_events; 105 of.events = clcf->open_file_cache_events;
105 106