summaryrefslogtreecommitdiff
path: root/include/util_cfgtree.h
diff options
context:
space:
mode:
authorSander Temme <sctemme@apache.org>2007-07-03 23:02:32 +0000
committerSander Temme <sctemme@apache.org>2007-07-03 23:02:32 +0000
commit10fd249eeac047725eaa9f9fdb4ea0df6dac9b01 (patch)
treeeebf91dbc8650fb7c743572d77c604822890b5c7 /include/util_cfgtree.h
parent368e758aee272b0599b676c7d56f75b5dd60b61a (diff)
downloadhttpd-10fd249eeac047725eaa9f9fdb4ea0df6dac9b01.tar.gz
Use correct Doxygen keywords for functions and variables. TODO: figure out whether those keywords are actually necessary. HTML-ify some documentation comments for benefit of Doxygen.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@553013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_cfgtree.h')
-rw-r--r--include/util_cfgtree.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/include/util_cfgtree.h b/include/util_cfgtree.h
index 58673f6e01..911130b913 100644
--- a/include/util_cfgtree.h
+++ b/include/util_cfgtree.h
@@ -39,9 +39,9 @@ typedef struct ap_directive_t ap_directive_t;
*
* The config tree only stores
* the directives that will be active in the running server. Directives
- * that contain other directions, such as <Directory ...> cause a sub-level
+ * that contain other directions, such as &lt;Directory ...&gt; cause a sub-level
* to be created, where the included directives are stored. The closing
- * directive (</Directory>) is not stored in the tree.
+ * directive (&lt;/Directory&gt;) is not stored in the tree.
*/
struct ap_directive_t {
/** The current directive */
@@ -49,14 +49,11 @@ struct ap_directive_t {
/** The arguments for the current directive, stored as a space
* separated list */
const char *args;
- /** The next directive node in the tree
- * @defvar ap_directive_t *next */
+ /** The next directive node in the tree */
struct ap_directive_t *next;
- /** The first child node of this directive
- * @defvar ap_directive_t *first_child */
+ /** The first child node of this directive */
struct ap_directive_t *first_child;
- /** The parent node of this directive
- * @defvar ap_directive_t *parent */
+ /** The parent node of this directive */
struct ap_directive_t *parent;
/** directive's module can store add'l data here */
@@ -71,7 +68,7 @@ struct ap_directive_t {
/**
* The root of the configuration tree
- * @defvar ap_directive_t *conftree
+ * @var ap_directive_t *conftree
*/
AP_DECLARE_DATA extern ap_directive_t *ap_conftree;