let show http-handlers list simpleStreamHandlers

This commit is contained in:
UbitUmarov
2020-04-24 00:24:02 +01:00
parent 9000240238
commit 8d2f90a8e2
2 changed files with 13 additions and 2 deletions

View File

@@ -370,6 +370,11 @@ namespace OpenSim.Framework.Servers.HttpServer
return new List<string>(m_streamHandlers.Keys);
}
public List<string> GetSimpleStreamHandlerKeys()
{
return new List<string>(m_simpleStreamHandlers.Keys);
}
private static string GetHandlerKey(string httpMethod, string path)
{
return httpMethod + ":" + path;