]> granicus.if.org Git - apache/commitdiff
dummy ssl hooks need to return an int value for server to function with mod_ssl compi...
authorDoug MacEachern <dougm@apache.org>
Tue, 17 Jul 2001 16:36:15 +0000 (16:36 +0000)
committerDoug MacEachern <dougm@apache.org>
Tue, 17 Jul 2001 16:36:15 +0000 (16:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89566 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/mod_ssl.c

index 826bea0bd25bcc749cdb4371ccbbdce3edc0f29c..754ca51640e3b77132862f462e38199a75108e80 100644 (file)
@@ -220,26 +220,26 @@ static void ssl_hook_post_config(
 static int ssl_hook_pre_connection(conn_rec *r)
 {
     /* unused */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_process_connection(conn_rec *r)
 {
     /* call ssl_hook_NewConnection */
     /* hook ssl_hook_CloseConnection() */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_handler(request_rec *r)
 {
     /* ssl_hook_Handler() */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_translate_name(request_rec *r)
 {
     /* ssl_hook_Translate() */
-    return;
+    return DECLINED;
 }
 
 static void ssl_hook_init_child(apr_pool_t *pchild, server_rec *s)
@@ -251,31 +251,31 @@ static void ssl_hook_init_child(apr_pool_t *pchild, server_rec *s)
 static int ssl_hook_auth_checker(request_rec *r)
 {
     /* ssl_hook_Auth() */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_check_user_id(request_rec *r)
 {
     /* ssl_hook_UserCheck */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_access_checker(request_rec *r)
 {
     /* ssl_hook_Access() */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_fixups(request_rec *r)
 {
     /* ssl_hook_Fixup() */
-    return;
+    return DECLINED;
 }
 
 static int ssl_hook_post_read_request(request_rec *r)
 {
     /* ssl_hook_ReadReq() */
-    return;
+    return DECLINED;
 }
 
 static void ssl_hook_child_init(apr_pool_t *pchild, server_rec *s)