diff --git a/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs index 3a04074b1d..2cfec4513d 100644 --- a/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/Interfaces/IHttpServer.cs @@ -78,7 +78,11 @@ namespace OpenSim.Framework.Servers.HttpServer /// bool AddHTTPHandler(string methodName, GenericHTTPMethod handler); - bool AddPollServiceHTTPHandler(string methodName, PollServiceEventArgs args); + bool AddPollServiceHTTPHandler(string ulr, PollServiceEventArgs args); + bool AddPollServiceHTTPHandler(PollServiceEventArgs args); + + void RemovePollServiceHTTPHandler(string url, string path); + void RemovePollServiceHTTPHandler(string path); /// /// Adds a LLSD handler, yay. @@ -133,7 +137,6 @@ namespace OpenSim.Framework.Servers.HttpServer /// void RemoveHTTPHandler(string httpMethod, string path); - void RemovePollServiceHTTPHandler(string httpMethod, string path); bool RemoveLLSDHandler(string path, LLSDMethod handler);