diff options
author | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-08-02 07:27:38 +0200 |
commit | 059d8dd2122f0a3948c2c09549159f0931a6f236 (patch) | |
tree | 8a2937938ed4eec31f918c6c8401ce07012cd37a /include/http_vhost.h | |
parent | Use the AP_INIT_TAKE23() macro to clean up a maintainer-mode warning, (diff) | |
download | apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.tar.xz apache2-059d8dd2122f0a3948c2c09549159f0931a6f236.zip |
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.h | 6 |
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, |