]> granicus.if.org Git - apache/commitdiff
Document http_main to use ScanDoc
authorRyan Bloom <rbb@apache.org>
Sat, 5 Aug 2000 17:01:07 +0000 (17:01 +0000)
committerRyan Bloom <rbb@apache.org>
Sat, 5 Aug 2000 17:01:07 +0000 (17:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85998 13f79535-47bb-0310-9956-ffa450edef68

include/http_main.h

index 2ab757764f794f7067d9274cf8422e1b74eb8c9e..1cf883dcca4061c81f9c8b8aaf47b6f2641302dd 100644 (file)
 extern "C" {
 #endif
 
+/**
+ * @package Command line options
+ */
+
+/** The name of the Apache executable */
 extern API_VAR_EXPORT const char *ap_server_argv0;
+/** The global server's ServerRoot */
 extern API_VAR_EXPORT const char *ap_server_root;
 
 /* for -C, -c and -D switches */
+/** An array of all -C directives.  These are processed before the server's
+ *  config file */
 extern API_VAR_EXPORT apr_array_header_t *ap_server_pre_read_config;
+/** An array of all -c directives.  These are processed after the server's
+ *  config file */
 extern API_VAR_EXPORT apr_array_header_t *ap_server_post_read_config;
+/** An array of all -D defines on the command line.  This allows people to
+ *  effect the server based on command line options */
 extern API_VAR_EXPORT apr_array_header_t *ap_server_config_defines;
 
 #ifdef __cplusplus