]> granicus.if.org Git - apache/commitdiff
Removed timeouts.
authorRoy T. Fielding <fielding@apache.org>
Thu, 26 Aug 1999 14:11:38 +0000 (14:11 +0000)
committerRoy T. Fielding <fielding@apache.org>
Thu, 26 Aug 1999 14:11:38 +0000 (14:11 +0000)
Submitted by: Bill Stoddard, Dean Gaudet

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83768 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_example.c

index 68a6b06fe3acbdd78d81721b7554081f01dc13d1..5252c6212c00a6f029bcd64b463d8a114d96aa22 100644 (file)
@@ -510,14 +510,12 @@ static int example_handler(request_rec *r)
      * is broken.
      */
     r->content_type = "text/html";
-    ap_soft_timeout("send example call trace", r);
     ap_send_http_header(r);
     /*
      * If we're only supposed to send header information (HEAD request), we're
      * already there.
      */
     if (r->header_only) {
-        ap_kill_timeout(r);
         return OK;
     }
 
@@ -581,7 +579,6 @@ static int example_handler(request_rec *r)
      * post-processing - but it's possible that another handler might be
      * called and inherit our outstanding timer.  Not good; to each its own.
      */
-    ap_kill_timeout(r);
     /*
      * We did what we wanted to do, so tell the rest of the server we
      * succeeded.