comparison src/http/modules/ngx_http_flv_module.c @ 1772:25c93614e6b9

open_file_cache_min_uses
author Igor Sysoev <igor@sysoev.ru>
date Sat, 22 Dec 2007 13:19:39 +0000
parents c42431762903
children 0b5b94805d26
comparison
equal deleted inserted replaced
1771:b794d78e52c5 1772:25c93614e6b9
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 of.test_dir = 0; 108 of.test_dir = 0;
109 of.valid = clcf->open_file_cache_valid; 109 of.valid = clcf->open_file_cache_valid;
110 of.min_uses = clcf->open_file_cache_min_uses;
110 of.errors = clcf->open_file_cache_errors; 111 of.errors = clcf->open_file_cache_errors;
111 of.events = clcf->open_file_cache_events; 112 of.events = clcf->open_file_cache_events;
112 113
113 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool); 114 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool);
114 115