From: Ryan Bloom Date: Tue, 5 Feb 2002 22:18:49 +0000 (+0000) Subject: Remove the install_transport_filters hook. The same function can be X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48517cd6ac94c9b23991781765f3616998de4b8f;p=thirdparty%2Fapache%2Fhttpd.git Remove the install_transport_filters hook. The same function can be 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 --- diff --git a/mod_ssl.c b/mod_ssl.c index 4a7082469dc..0f777a6083b 100644 --- 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;