From fbb8b416f58046e57fae0c1ca7aee1783d49d2ee Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sat, 5 Aug 2000 17:01:07 +0000 Subject: [PATCH] Document http_main to use ScanDoc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85998 13f79535-47bb-0310-9956-ffa450edef68 --- include/http_main.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/http_main.h b/include/http_main.h index 2ab757764f..1cf883dcca 100644 --- a/include/http_main.h +++ b/include/http_main.h @@ -69,12 +69,24 @@ 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 -- 2.50.1