]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove the install_transport_filters hook. The same function can be
authorRyan Bloom <rbb@apache.org>
Tue, 5 Feb 2002 22:18:49 +0000 (22:18 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 5 Feb 2002 22:18:49 +0000 (22:18 +0000)
acheived with the pre_connection hook.  I have added the socket to the
pre_connection phase to make this possible.
Reviewed by: Bill Stoddard

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@93259 13f79535-47bb-0310-9956-ffa450edef68

mod_ssl.c

index 4a7082469dc2b013b110fb9f3a506e60861a2f6e..0f777a6083b95285bed72063ac79575f23f2603d 100644 (file)
--- a/mod_ssl.c
+++ b/mod_ssl.c
@@ -219,7 +219,7 @@ static int ssl_hook_pre_config(
     return OK;
 }
 
-static int ssl_hook_pre_connection(conn_rec *c)
+static int ssl_hook_pre_connection(conn_rec *c, void *csd)
 {
     SSLSrvConfigRec *sc = mySrvConfig(c->base_server);
     SSL *ssl;