From: Jeff Trawick Date: Thu, 31 May 2001 18:10:04 +0000 (+0000) Subject: handle the SERVER_IDLE_KILL state in some of the ExtendedStatus=On X-Git-Tag: 2.0.19~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e47fad222b10d632a4ddba7eecda78b7f739e644;p=thirdparty%2Fapache%2Fhttpd.git handle the SERVER_IDLE_KILL state in some of the ExtendedStatus=On output I don't have 100% confidence in my guess as to why some of the state labels are in bold and some aren't (e.g., "Write" vs. "Graceful". Hopefully any rhyme or reason to it is maintained with my change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89249 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index f1a689a3f0d..e00cffc41e7 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -591,6 +591,9 @@ static int status_handler(request_rec *r) case SERVER_GRACEFUL: ap_rputs("Graceful", r); break; + case SERVER_IDLE_KILL: + ap_rputs("Dying", r); + break; default: ap_rputs("?STATE?", r); break; @@ -662,6 +665,9 @@ static int status_handler(request_rec *r) case SERVER_GRACEFUL: ap_rputs("G", r); break; + case SERVER_IDLE_KILL: + ap_rputs("I", r); + break; default: ap_rputs("?", r); break;