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...@locus.apache.org on 2000/04/28 01:44:18 UTC

cvs commit: apache-2.0/src/main http_connection.c

dougm       00/04/27 16:44:18

  Modified:    src/include http_connection.h
               src/main http_connection.c
  Log:
  change ap_hook_pre_connection from VOID to RUN_ALL
  
  Revision  Changes    Path
  1.15      +1 -1      apache-2.0/src/include/http_connection.h
  
  Index: http_connection.h
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/include/http_connection.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- http_connection.h	2000/04/26 07:14:31	1.14
  +++ http_connection.h	2000/04/27 23:44:15	1.15
  @@ -73,7 +73,7 @@
   #endif
   
     /* Hooks */
  -AP_DECLARE_HOOK(void,pre_connection,(conn_rec *))
  +AP_DECLARE_HOOK(int,pre_connection,(conn_rec *))
   AP_DECLARE_HOOK(int,process_connection,(conn_rec *))
   
   #ifdef __cplusplus
  
  
  
  1.32      +1 -1      apache-2.0/src/main/http_connection.c
  
  Index: http_connection.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/http_connection.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- http_connection.c	2000/04/26 07:14:33	1.31
  +++ http_connection.c	2000/04/27 23:44:16	1.32
  @@ -72,7 +72,7 @@
   	    AP_HOOK_LINK(process_connection)
   )
   
  -AP_IMPLEMENT_HOOK_VOID(pre_connection,(conn_rec *c),(c))
  +AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_connection,(conn_rec *c),(c),OK,DECLINED)
   AP_IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
   
   /*