gregames 01/07/11 19:19:43
Modified: modules/http http_core.c
. CHANGES
Log:
Provide vhost and abbreviated request strings on ExtendedStatus displays.
Revision Changes Path
1.281 +2 -2 httpd-2.0/modules/http/http_core.c
Index: http_core.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/http/http_core.c,v
retrieving revision 1.280
retrieving revision 1.281
diff -u -d -b -u -r1.280 -r1.281
--- http_core.c 2001/06/26 17:40:58 1.280
+++ http_core.c 2001/07/12 02:19:38 1.281
@@ -282,7 +282,7 @@
/* 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 @@
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())
1.246 +3 -0 httpd-2.0/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/httpd-2.0/CHANGES,v
retrieving revision 1.245
retrieving revision 1.246
diff -u -d -b -u -r1.245 -r1.246
--- CHANGES 2001/07/11 14:48:08 1.245
+++ CHANGES 2001/07/12 02:19:41 1.246
@@ -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-
|