mod_disk_cache.h revision dcb4802d9ea9fc4ba89671e8f8faa70c9535b202
1276N/A/* Licensed to the Apache Software Foundation (ASF) under one or more 1276N/A * contributor license agreements. See the NOTICE file distributed with 1276N/A * this work for additional information regarding copyright ownership. 1276N/A * The ASF licenses this file to You under the Apache License, Version 2.0 1276N/A * (the "License"); you may not use this file except in compliance with 486N/A * the License. You may obtain a copy of the License at 486N/A * Unless required by applicable law or agreed to in writing, software 486N/A * distributed under the License is distributed on an "AS IS" BASIS, 486N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 486N/A * See the License for the specific language governing permissions and 486N/A * limitations under the License. 1276N/A * include for mod_disk_cache: Disk Based HTTP 1.1 Cache. 486N/A /* Indicates the format of the header struct stored on-disk. */ 486N/A /* The HTTP status code returned for this response. */ 486N/A /* The size of the entity name that follows. */ 486N/A /* The number of times we've cached this entity. */ 486N/A /* Miscellaneous time values. */ 486N/A /* The ident of the body file, so we can test the body matches the header */ 486N/A /* Does this cached request have a body? */ 486N/A * Pointed to by cache_object_t::vobj 486N/A const char *
root;
/* the location of the cache directory */ 486N/A const char *
name;
/* Requested URI without vary bits - suitable for mortals. */ 486N/A const char *
key;
/* On-disk prefix; URI with Vary bits (if present) */ 486N/A int done;
/* Is the attempt to cache complete? */ 486N/A * mod_disk_cache configuration 486N/A/* TODO: Make defaults OS specific */ 486N/A#
endif /*MOD_DISK_CACHE_H*/