/**
* @file ap_expr.h
* @brief Expression parser
+ *
+ * @defgroup AP_EXPR ap_expr
+ * @ingroup APACHE_CORE
+ * @{
*/
#ifndef AP_EXPR_H
* @param cmd The cmd_parms struct
* @param expr The expression string to parse
* @param err Set to NULL on success, error message on error
+ * @param lookup_fn The lookup function used to lookup vars, functions, and
+ * operators
* @return The parsed expression
*/
AP_DECLARE(ap_expr_info_t *) ap_expr_parse_cmd(const cmd_parms *cmd,
#endif
#endif /* AP_EXPR_H */
+/** @} */
* @param filter_func The filter function to name
* @param filter_init The function to call before the filter handlers
are invoked
- * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
+ * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT_SET or
* ::AP_FTYPE_CONNECTION
* @see add_input_filter()
*/
* @param filter_func The filter function to name
* @param filter_init The function to call before the filter handlers
* are invoked
- * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT or
+ * @param ftype The type of filter function, either ::AP_FTYPE_CONTENT_SET or
* ::AP_FTYPE_CONNECTION
* @param proto_flags Protocol flags: logical OR of AP_FILTER_PROTO_* bits
* @return the filter rec
} cache_control_t;
#endif /* CACHE_COMMON_H */
-
+/** @} */
} disk_cache_info_t;
#endif /* CACHE_DIST_COMMON_H */
-
+/** @} */
/**
* Check the whether the request allows a cached object to be served as per RFC2616
* section 14.9.4 (Cache Revalidation and Reload Controls)
- * @param h cache_handle_t
+ * @param cache cache_request_rec
* @param r request_rec
* @return 0 ==> cache object may not be served, 1 ==> cache object may be served
*/
/**
* Check the freshness of the cache object per RFC2616 section 13.2 (Expiration Model)
- * @param h cache_handle_t
+ * @param cache cache_request_rec
* @param r request_rec
* @return 0 ==> cache object is stale, 1 ==> cache object is fresh
*/