]> granicus.if.org Git - apache/commitdiff
Workaround till connection_hook details are resolved
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 19 Jul 2001 20:02:28 +0000 (20:02 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 19 Jul 2001 20:02:28 +0000 (20:02 +0000)
  [MATHIHALLI,MADHUSUDAN <madhusudan_mathihalli@hp.com>]

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

modules/ssl/mod_ssl.c
modules/ssl/mod_ssl.h

index f1b186339cc59fd48f620372a177f99c8d607b16..3241a021f35f0c4b6389da4ea030bfe5876fe3e2 100644 (file)
@@ -320,7 +320,7 @@ static int ssl_hook_pre_connection(conn_rec *c)
  * Adv. if conn_rec * can be accepted is we can hook this function using the
  * ap_hook_process_connection hook.
  */
-static int ssl_hook_process_connection(SSLFilterRec *pRec)
+int ssl_hook_process_connection(SSLFilterRec *pRec)
 {
     int n, err;
     conn_rec *c = SSL_get_app_data (pRec->pssl);
index 04e32834dd33fbd59526fecf30d7adf92ebbab21..5eae80d8ceebb16e3c38256c9f54c583a601fe24 100644 (file)
@@ -595,6 +595,7 @@ apr_status_t ssl_init_ModuleKill(void *data);
 /*  Apache API hooks  */
 void         ssl_hook_NewConnection(conn_rec *);
 void         ssl_hook_TimeoutConnection(int);
+int          ssl_hook_process_connection(SSLFilterRec *pRec);
 apr_status_t ssl_hook_CloseConnection(SSLFilterRec *);
 int          ssl_hook_Translate(request_rec *);
 int          ssl_hook_Auth(request_rec *);