You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2001/12/23 04:49:46 UTC

cvs commit: httpd-2.0/server connection.c

stoddard    01/12/22 19:49:46

  Modified:    server   connection.c
  Log:
  The connection can be aborted in the preconnection hook. If that happens,
  there is no need to run the process_connection hook.
  
  Revision  Changes    Path
  1.96      +3 -2      httpd-2.0/server/connection.c
  
  Index: connection.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/connection.c,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- connection.c	2001/12/18 13:48:52	1.95
  +++ connection.c	2001/12/23 03:49:46	1.96
  @@ -226,6 +226,7 @@
   
       ap_run_pre_connection(c);
   
  -    ap_run_process_connection(c);
  -
  +    if (!c->aborted) {
  +        ap_run_process_connection(c);
  +    }
   }