]> granicus.if.org Git - apache/commitdiff
Tweak some doxygen comments to get these functions to show up in
authorDaniel Earl Poirier <poirier@apache.org>
Sun, 7 Nov 2010 13:36:48 +0000 (13:36 +0000)
committerDaniel Earl Poirier <poirier@apache.org>
Sun, 7 Nov 2010 13:36:48 +0000 (13:36 +0000)
the right places in the generated doc.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1032275 13f79535-47bb-0310-9956-ffa450edef68

include/util_cookies.h
include/util_filter.h

index 262ff13f157ebd8f3e657bb5578ace280fe13fb6..b46c9bc0deabb857842ee6625e00cccb9e31685d 100644 (file)
@@ -33,6 +33,8 @@ extern "C" {
  * RFC2109 and RFC2965 compliant HTTP cookies can be read from and written
  * to using this set of functions.
  *
+ * @{
+ *
  */
 
 #include "apr_errno.h"
@@ -125,6 +127,10 @@ AP_DECLARE(apr_status_t) ap_cookie_read(request_rec * r, const char *name, const
  */
 AP_DECLARE(apr_status_t) ap_cookie_check_string(const char *string);
 
+/**
+ * @}
+ */
+
 #ifdef __cplusplus
 }
 #endif
index 89bbcd25e8db5b55c816efa6610e5e784380225e..70f8191a860d518e025f693d0d7813775742984d 100644 (file)
@@ -86,6 +86,8 @@ typedef enum {
  * stream" marker into the filter chain. The filters will use this to flush
  * out any internal state and to detect incomplete syntax (for example, an
  * unterminated SSI directive).
+ *
+ * @{
  */
 
 /* forward declare the filter type */
@@ -589,6 +591,10 @@ AP_DECLARE(void) ap_filter_protocol(ap_filter_t* f, unsigned int proto_flags);
 /** Filter is incompatible with "Cache-Control: no-transform" */
 #define AP_FILTER_PROTO_TRANSFORM 0x20
 
+/**
+ * @}
+ */
+
 #ifdef __cplusplus
 }
 #endif