From: Stefan Fritsch Date: Wed, 8 Dec 2010 21:59:46 +0000 (+0000) Subject: Fix some doxygen warnings X-Git-Tag: 2.3.10~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce6e4de41a077922dde16b52ffb0629016cc1665;p=apache Fix some doxygen warnings git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1043710 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_expr.h b/include/ap_expr.h index 7243752746..c35414ec19 100644 --- a/include/ap_expr.h +++ b/include/ap_expr.h @@ -17,6 +17,10 @@ /** * @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 */ +/** @} */ diff --git a/include/util_filter.h b/include/util_filter.h index 70f8191a86..449889d1a6 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -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 diff --git a/modules/cache/cache_common.h b/modules/cache/cache_common.h index 9691c0c5a0..cedce0767d 100644 --- a/modules/cache/cache_common.h +++ b/modules/cache/cache_common.h @@ -52,4 +52,4 @@ typedef struct cache_control { } cache_control_t; #endif /* CACHE_COMMON_H */ - +/** @} */ diff --git a/modules/cache/cache_disk_common.h b/modules/cache/cache_disk_common.h index d3b858f894..8cac2d5308 100644 --- a/modules/cache/cache_disk_common.h +++ b/modules/cache/cache_disk_common.h @@ -65,4 +65,4 @@ typedef struct { } disk_cache_info_t; #endif /* CACHE_DIST_COMMON_H */ - +/** @} */ diff --git a/modules/cache/cache_util.h b/modules/cache/cache_util.h index 18ef76e7b1..ba8c9c31b7 100644 --- a/modules/cache/cache_util.h +++ b/modules/cache/cache_util.h @@ -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 */