]> granicus.if.org Git - apache/commitdiff
Fix some doxygen warnings
authorStefan Fritsch <sf@apache.org>
Wed, 8 Dec 2010 21:59:46 +0000 (21:59 +0000)
committerStefan Fritsch <sf@apache.org>
Wed, 8 Dec 2010 21:59:46 +0000 (21:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1043710 13f79535-47bb-0310-9956-ffa450edef68

include/ap_expr.h
include/util_filter.h
modules/cache/cache_common.h
modules/cache/cache_disk_common.h
modules/cache/cache_util.h

index 7243752746e2d41078e4b36bc25fcad30879fb53..c35414ec1918b52e18472ca7f37a5e67d4e934f1 100644 (file)
 /**
  * @file ap_expr.h
  * @brief Expression parser
+ *
+ * @defgroup AP_EXPR ap_expr
+ * @ingroup  APACHE_CORE
+ * @{
  */
 
 #ifndef AP_EXPR_H
@@ -252,6 +256,8 @@ AP_DECLARE(const char *) ap_expr_parse(apr_pool_t *pool, apr_pool_t *ptemp,
  * @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,
@@ -270,3 +276,4 @@ void ap_expr_init(apr_pool_t *pool);
 #endif
 
 #endif /* AP_EXPR_H */
+/** @} */
index 70f8191a860d518e025f693d0d7813775742984d..449889d1a6cd27d16fd0d341d942e769c620835e 100644 (file)
@@ -324,7 +324,7 @@ AP_DECLARE(apr_status_t) ap_pass_brigade(ap_filter_t *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
  * @see add_input_filter()
  */
@@ -354,7 +354,7 @@ AP_DECLARE(ap_filter_rec_t *) ap_register_output_filter(const char *name,
  * @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
index 9691c0c5a0132911e6ed4049c49dc4db5d88ce99..cedce0767d2a6ec743a3ddcc5f85dcce00ed3331 100644 (file)
@@ -52,4 +52,4 @@ typedef struct cache_control {
 } cache_control_t;
 
 #endif /* CACHE_COMMON_H */
-
+/** @} */
index d3b858f894832f666ffdc79c30509e39de8c68b7..8cac2d5308f97d5d0a4693018ae349dc6ad969b4 100644 (file)
@@ -65,4 +65,4 @@ typedef struct {
 } disk_cache_info_t;
 
 #endif /* CACHE_DIST_COMMON_H */
-
+/** @} */
index 18ef76e7b1a28fcd95e566099616aca093333598..ba8c9c31b77603e85069451925dbf49b044bd2a7 100644 (file)
@@ -228,7 +228,7 @@ typedef struct {
 /**
  * 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
  */
@@ -236,7 +236,7 @@ CACHE_DECLARE(int) ap_cache_check_allowed(cache_request_rec *cache, request_rec
 
 /**
  * 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
  */