Added /simstatus REST handler

0.1-prestable
gareth 2007-04-02 12:35:21 +00:00
parent beb1d42cfb
commit 8b81f8d593
1 changed files with 5 additions and 0 deletions

View File

@ -181,6 +181,11 @@ namespace OpenSim
return new XmlRpcResponse();
});
_httpServer.AddRestHandler("GET","/simstatus/",
delegate(string request, string path)
{
return "OK";
});
}
LoginServer loginServer = null;