/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
*/
/* a cache control header breakdown */ typedefstruct cache_control { unsignedint parsed:1; unsignedint cache_control:1; unsignedint pragma:1; unsignedint no_cache:1; unsignedint no_cache_header:1; /* no cache by header match */ unsignedint no_store:1; unsignedint max_age:1; unsignedint max_stale:1; unsignedint min_fresh:1; unsignedint no_transform:1; unsignedint only_if_cached:1; unsignedintpublic:1; unsignedintprivate:1; unsignedint private_header:1; /* private by header match */ unsignedint must_revalidate:1; unsignedint proxy_revalidate:1; unsignedint s_maxage:1; unsignedint invalidated:1; /* has this entity been invalidated? */
apr_int64_t max_age_value; /* if positive, then set */
apr_int64_t max_stale_value; /* if positive, then set */
apr_int64_t min_fresh_value; /* if positive, then set */
apr_int64_t s_maxage_value; /* if positive, then set */
} cache_control_t;
#endif/* CACHE_COMMON_H */ /** @} */
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.16Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.