From: Ryan Bloom Date: Sat, 5 Aug 2000 17:01:07 +0000 (+0000) Subject: Document http_main to use ScanDoc X-Git-Tag: APACHE_2_0_ALPHA_6~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbb8b416f58046e57fae0c1ca7aee1783d49d2ee;p=apache Document http_main to use ScanDoc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85998 13f79535-47bb-0310-9956-ffa450edef68 --- 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