summaryrefslogtreecommitdiff
path: root/include/http_vhost.h
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2000-08-02 05:27:38 +0000
committerDoug MacEachern <dougm@apache.org>2000-08-02 05:27:38 +0000
commit059d8dd2122f0a3948c2c09549159f0931a6f236 (patch)
tree8a2937938ed4eec31f918c6c8401ce07012cd37a /include/http_vhost.h
parent3ae78ff3833de9187e9fc0eb6aab69a8b8162c5a (diff)
downloadhttpd-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.gz
prefix libapr functions and types with apr_
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85976 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 256609d6aa..b131273f3b 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_pool_t *p);
+void ap_init_vhost_config(apr_pool_t *p);
/* called after the config has been read */
-void ap_fini_vhost_config(ap_pool_t *p, server_rec *main_server);
+void ap_fini_vhost_config(apr_pool_t *p, server_rec *main_server);
/* handle addresses in <VirtualHost> statement */
-const char *ap_parse_vhost_addrs(ap_pool_t *p, const char *hostname, server_rec *s);
+const char *ap_parse_vhost_addrs(apr_pool_t *p, const char *hostname, server_rec *s);
/* handle NameVirtualHost directive */
const char *ap_set_name_virtual_host (cmd_parms *cmd, void *dummy,