summaryrefslogtreecommitdiff
path: root/include/http_main.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-08-05 17:01:07 +0000
committerRyan Bloom <rbb@apache.org>2000-08-05 17:01:07 +0000
commitfbb8b416f58046e57fae0c1ca7aee1783d49d2ee (patch)
treee8c990cacc31f5374a877b3bd71f0b76023c4713 /include/http_main.h
parent26074e495b1ebc7a3b4e5fcf0939dd1087937f47 (diff)
downloadhttpd-fbb8b416f58046e57fae0c1ca7aee1783d49d2ee.tar.gz
Document http_main to use ScanDoc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85998 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_main.h')
-rw-r--r--include/http_main.h12
1 files changed, 12 insertions, 0 deletions
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