You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2001/07/17 18:36:21 UTC

cvs commit: httpd-2.0/modules/ssl mod_ssl.c

dougm       01/07/17 09:36:20

  Modified:    modules/ssl mod_ssl.c
  Log:
  dummy ssl hooks need to return an int value for server to function with mod_ssl compiled in
  
  Revision  Changes    Path
  1.7       +9 -9      httpd-2.0/modules/ssl/mod_ssl.c
  
  Index: mod_ssl.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/mod_ssl.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- mod_ssl.c	2001/05/14 10:53:33	1.6
  +++ mod_ssl.c	2001/07/17 16:36:15	1.7
  @@ -220,26 +220,26 @@
   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 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)