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

directio
author Igor Sysoev <igor@sysoev.ru>
date Wed, 30 Jul 2008 12:34:04 +0000
parents d090fa684433
children 8564129d49b6
comparison
equal deleted inserted replaced
2128:345a014436d4 2129:25add486e7aa
105 105
106 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 106 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
107 107
108 ngx_memzero(&of, sizeof(ngx_open_file_info_t)); 108 ngx_memzero(&of, sizeof(ngx_open_file_info_t));
109 109
110 of.directio = clcf->directio;
110 of.valid = clcf->open_file_cache_valid; 111 of.valid = clcf->open_file_cache_valid;
111 of.min_uses = clcf->open_file_cache_min_uses; 112 of.min_uses = clcf->open_file_cache_min_uses;
112 of.errors = clcf->open_file_cache_errors; 113 of.errors = clcf->open_file_cache_errors;
113 of.events = clcf->open_file_cache_events; 114 of.events = clcf->open_file_cache_events;
114 115