| 201 | } |
| 202 | |
| 203 | static apr_status_t file_cache_create(disk_cache_conf *conf, disk_cache_file_t *file, |
| 204 | apr_pool_t *pool) |
| 205 | { |
| 206 | file->pool = pool; |
| 207 | file->tempfile = apr_pstrcat(pool, conf->cache_root, AP_TEMPFILE, NULL); |
| 208 | |
| 209 | apr_pool_cleanup_register(pool, file, file_cache_temp_cleanup, apr_pool_cleanup_null); |
| 210 | |
| 211 | return APR_SUCCESS; |
| 212 | } |
| 213 | |
| 214 | /* These two functions get and put state information into the data |
| 215 | * file for an ap_cache_el, this state information will be read |
no outgoing calls
no test coverage detected