1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Workaround till connection_hook details are resolved

[MATHIHALLI,MADHUSUDAN <madhusudan_mathihalli@hp.com>]


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89620 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-07-19 20:02:28 +00:00
parent 6fd9442de5
commit d8f39cdd57
2 changed files with 2 additions and 1 deletions

View 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 * Adv. if conn_rec * can be accepted is we can hook this function using the
* ap_hook_process_connection hook. * ap_hook_process_connection hook.
*/ */
static int ssl_hook_process_connection(SSLFilterRec *pRec) int ssl_hook_process_connection(SSLFilterRec *pRec)
{ {
int n, err; int n, err;
conn_rec *c = SSL_get_app_data (pRec->pssl); conn_rec *c = SSL_get_app_data (pRec->pssl);

View File

@@ -595,6 +595,7 @@ apr_status_t ssl_init_ModuleKill(void *data);
/* Apache API hooks */ /* Apache API hooks */
void ssl_hook_NewConnection(conn_rec *); void ssl_hook_NewConnection(conn_rec *);
void ssl_hook_TimeoutConnection(int); void ssl_hook_TimeoutConnection(int);
int ssl_hook_process_connection(SSLFilterRec *pRec);
apr_status_t ssl_hook_CloseConnection(SSLFilterRec *); apr_status_t ssl_hook_CloseConnection(SSLFilterRec *);
int ssl_hook_Translate(request_rec *); int ssl_hook_Translate(request_rec *);
int ssl_hook_Auth(request_rec *); int ssl_hook_Auth(request_rec *);