From: Greg Ames Date: Thu, 12 Jul 2001 02:19:41 +0000 (+0000) Subject: Provide vhost and abbreviated request strings on ExtendedStatus displays. X-Git-Tag: 2.0.21~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13a3c248cceab45a97c90b9f62bbc9a8a7aa3688;p=thirdparty%2Fapache%2Fhttpd.git Provide vhost and abbreviated request strings on ExtendedStatus displays. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89541 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 05fd7941b8c..425c7341a8b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,7 @@ Changes with Apache 2.0.21-dev + + *) Provide vhost and request strings when ExtendedStatus is on. + [Greg Ames] *) Fix some issues with the pod and prefork: check the pod *after* processing a connection so that a server processing a time- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 302d3239380..83e11748871 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -282,7 +282,7 @@ static int ap_process_http_connection(conn_rec *c) /* process the request if it was read without error */ - ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, NULL); + ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_WRITE, r); if (r->status == HTTP_OK) ap_process_request(r); @@ -292,7 +292,7 @@ static int ap_process_http_connection(conn_rec *c) if (!c->keepalive || c->aborted) break; - ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, NULL); + ap_update_child_status(AP_CHILD_THREAD_FROM_ID(c->id), SERVER_BUSY_KEEPALIVE, r); apr_pool_destroy(r->pool); if (ap_graceful_stop_signalled())