comparison src/http/modules/ngx_http_flv_module.c @ 1767:c42431762903

open_file_cache_retest > open_file_cache_valid
author Igor Sysoev <igor@sysoev.ru>
date Fri, 21 Dec 2007 16:19:48 +0000
parents f5f124fbfa3b
children 25c93614e6b9
comparison
equal deleted inserted replaced
1766:111eb827ed44 1767:c42431762903
104 "http flv filename: \"%V\"", &path); 104 "http flv filename: \"%V\"", &path);
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.retest = clcf->open_file_cache_retest; 109 of.valid = clcf->open_file_cache_valid;
110 of.errors = clcf->open_file_cache_errors; 110 of.errors = clcf->open_file_cache_errors;
111 of.events = clcf->open_file_cache_events; 111 of.events = clcf->open_file_cache_events;
112 112
113 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool); 113 rc = ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool);
114 114