1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-01 07:26:57 +03:00

Axe out EAPI-based SSL_VENDOR stuff.

If we want this later again, we have to do it differently anyway. So,
for now we try to strip down mod_ssl as heavy as possible and hence we
kick out this stuff at all.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ralf S. Engelschall
2001-05-05 15:02:13 +00:00
parent f922bfa218
commit 4a4ce878a4
9 changed files with 21 additions and 191 deletions

View File

@ -145,11 +145,6 @@ void ssl_init_Module(server_rec *s, pool *p)
ssl_log(s, SSL_LOG_INFO, "Init: %d%s restart round (already detached)",
mc->nInitCount-2, (mc->nInitCount-2) == 1 ? "st" : "nd");
#ifdef SSL_VENDOR
ap_hook_use("ap::mod_ssl::vendor::init_module",
AP_HOOK_SIG3(void,ptr,ptr), AP_HOOK_ALL, s, p);
#endif
/*
* The initialization phase inside the Apache API is totally bogus.
* We actually have three non-trivial problems:
@ -830,12 +825,6 @@ void ssl_init_ConfigureServer(server_rec *s, pool *p, SSLSrvConfigRec *sc)
n, n == 1 ? "" : "s");
}
#ifdef SSL_VENDOR
ap_hook_use("ap::mod_ssl::vendor::configure_server",
AP_HOOK_SIG4(void,ptr,ptr,ptr), AP_HOOK_ALL,
s, p, sc);
#endif
return;
}