Commit 276aacb0 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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., "<b>Write</b>" 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
parent eabc9cd2
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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("<td>G", r);
			    break;
                        case SERVER_IDLE_KILL:
                            ap_rputs("<td>I", r);
                            break;
			default:
			    ap_rputs("<td>?", r);
			    break;