summaryrefslogtreecommitdiff
path: root/include/http_vhost.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-04-14 15:59:20 +0000
committerRyan Bloom <rbb@apache.org>2000-04-14 15:59:20 +0000
commitde3a77dc016d09f7a065448efa3c745b73cf9c42 (patch)
tree67f5e3fba093eb416fe4bbca701cd6187d3364cc /include/http_vhost.h
parent20325a811b58ae116684b85e4600c9c0418a073a (diff)
downloadhttpd-de3a77dc016d09f7a065448efa3c745b73cf9c42.tar.gz
Change ap_context_t to ap_pool_t. This compiles, runs, and serves pages
on Linux, but probably breaks somewhere. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_vhost.h')
-rw-r--r--include/http_vhost.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/http_vhost.h b/include/http_vhost.h
index bdc581768d..8d13e49ceb 100644
--- a/include/http_vhost.h
+++ b/include/http_vhost.h
@@ -60,13 +60,13 @@ extern "C" {
#endif
/* called before any config is read */
-void ap_init_vhost_config(ap_context_t *p);
+void ap_init_vhost_config(ap_pool_t *p);
/* called after the config has been read */
-void ap_fini_vhost_config(ap_context_t *p, server_rec *main_server);
+void ap_fini_vhost_config(ap_pool_t *p, server_rec *main_server);
/* handle addresses in <VirtualHost> statement */
-const char *ap_parse_vhost_addrs(ap_context_t *p, const char *hostname, server_rec *s);
+const char *ap_parse_vhost_addrs(ap_pool_t *p, const char *hostname, server_rec *s);
/* handle NameVirtualHost directive */
const char *ap_set_name_virtual_host (cmd_parms *cmd, void *dummy, char *arg);