From: Roy T. Fielding Date: Thu, 26 Aug 1999 14:11:38 +0000 (+0000) Subject: Removed timeouts. X-Git-Tag: PRE_APR_CHANGES~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f30e699f757cdbb65ee261386a7c35b5f32b0f5;p=apache Removed timeouts. Submitted by: Bill Stoddard, Dean Gaudet git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83768 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_example.c b/modules/experimental/mod_example.c index 68a6b06fe3..5252c6212c 100644 --- a/modules/experimental/mod_example.c +++ b/modules/experimental/mod_example.c @@ -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.