summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/util_cookies.h6
-rw-r--r--include/util_filter.h6
2 files changed, 12 insertions, 0 deletions
diff --git a/include/util_cookies.h b/include/util_cookies.h
index 262ff13f15..b46c9bc0de 100644
--- a/include/util_cookies.h
+++ b/include/util_cookies.h
@@ -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
diff --git a/include/util_filter.h b/include/util_filter.h
index 89bbcd25e8..70f8191a86 100644
--- a/include/util_filter.h
+++ b/include/util_filter.h
@@ -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