From 8f30e699f757cdbb65ee261386a7c35b5f32b0f5 Mon Sep 17 00:00:00 2001 From: "Roy T. Fielding" Date: Thu, 26 Aug 1999 14:11:38 +0000 Subject: [PATCH] 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 --- modules/experimental/mod_example.c | 3 --- 1 file changed, 3 deletions(-) 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. -- 2.40.0