LibProtocol+RequestServer: Add IPC to dump RequestServer connection info

This was available on Serenity by sending SIGINFO to RequestServer. Add
an IPC so we may see this info while running the browser.
This commit is contained in:
Timothy Flynn
2024-08-03 13:24:56 -04:00
committed by Tim Flynn
parent 62fa84865d
commit e75ba44f37
5 changed files with 16 additions and 0 deletions

View File

@@ -384,4 +384,9 @@ Messages::RequestServer::WebsocketSetCertificateResponse ConnectionFromClient::w
return success;
}
void ConnectionFromClient::dump_connection_info()
{
ConnectionCache::dump_jobs();
}
}