diff options
author | Melanie | 2011-12-08 03:37:48 +0100 |
---|---|---|
committer | Melanie | 2011-12-08 03:37:48 +0100 |
commit | 7c7dd6269a0efff5b4619028825a46fcab84de63 (patch) | |
tree | cbe6c622fc1c069f3a33636fd1174d314dec074a /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |
parent | Recover from an internal mess-up in the outgoing packet queues by creating (diff) | |
parent | Merge branch 'master' into bigmerge (diff) | |
download | opensim-SC-7c7dd6269a0efff5b4619028825a46fcab84de63.zip opensim-SC-7c7dd6269a0efff5b4619028825a46fcab84de63.tar.gz opensim-SC-7c7dd6269a0efff5b4619028825a46fcab84de63.tar.bz2 opensim-SC-7c7dd6269a0efff5b4619028825a46fcab84de63.tar.xz |
Merge branch 'bigmerge' of ssh://3dhosting.de/var/git/careminster into bigmerge
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index 04739fe..2c0d8f0 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -227,21 +227,17 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
227 | return new List<string>(m_HTTPHandlers.Keys); | 227 | return new List<string>(m_HTTPHandlers.Keys); |
228 | } | 228 | } |
229 | 229 | ||
230 | public bool AddPollServiceHTTPHandler(string methodName, GenericHTTPMethod handler, PollServiceEventArgs args) | 230 | public bool AddPollServiceHTTPHandler(string methodName, PollServiceEventArgs args) |
231 | { | 231 | { |
232 | bool pollHandlerResult = false; | ||
233 | lock (m_pollHandlers) | 232 | lock (m_pollHandlers) |
234 | { | 233 | { |
235 | if (!m_pollHandlers.ContainsKey(methodName)) | 234 | if (!m_pollHandlers.ContainsKey(methodName)) |
236 | { | 235 | { |
237 | m_pollHandlers.Add(methodName,args); | 236 | m_pollHandlers.Add(methodName, args); |
238 | pollHandlerResult = true; | 237 | return true; |
239 | } | 238 | } |
240 | } | 239 | } |
241 | 240 | ||
242 | if (pollHandlerResult) | ||
243 | return AddHTTPHandler(methodName, handler); | ||
244 | |||
245 | return false; | 241 | return false; |
246 | } | 242 | } |
247 | 243 | ||
@@ -1871,8 +1867,6 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1871 | { | 1867 | { |
1872 | lock (m_pollHandlers) | 1868 | lock (m_pollHandlers) |
1873 | m_pollHandlers.Remove(path); | 1869 | m_pollHandlers.Remove(path); |
1874 | |||
1875 | RemoveHTTPHandler(httpMethod, path); | ||
1876 | } | 1870 | } |
1877 | 1871 | ||
1878 | public bool RemoveAgentHandler(string agent, IHttpAgentHandler handler) | 1872 | public bool RemoveAgentHandler(string agent, IHttpAgentHandler handler) |