diff options
author | Justin Clarke Casey | 2009-01-06 14:30:50 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-06 14:30:50 +0000 |
commit | 579f11b3b892a92c672a919b361b6961d302d234 (patch) | |
tree | 4e86b0957684f4b024c0f9c44cfb6d2faeed3ccb /OpenSim/Region/Environment/Scenes | |
parent | * refactor: drop AddXmlRpcHandler() from scene in favour of call via CommsMan... (diff) | |
download | opensim-SC_OLD-579f11b3b892a92c672a919b361b6961d302d234.zip opensim-SC_OLD-579f11b3b892a92c672a919b361b6961d302d234.tar.gz opensim-SC_OLD-579f11b3b892a92c672a919b361b6961d302d234.tar.bz2 opensim-SC_OLD-579f11b3b892a92c672a919b361b6961d302d234.tar.xz |
* refactor: call AddLLSDHandler directly via CommsManager
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 8e6e258..ac1461e 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -4190,11 +4190,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
4190 | m_httpListener.AddStreamHandler(handler); | 4190 | m_httpListener.AddStreamHandler(handler); |
4191 | } | 4191 | } |
4192 | 4192 | ||
4193 | public bool AddLLSDHandler(string path, LLSDMethod handler) | ||
4194 | { | ||
4195 | return m_httpListener.AddLLSDHandler(path, handler); | ||
4196 | } | ||
4197 | |||
4198 | public void RemoveStreamHandler(string httpMethod, string path) | 4193 | public void RemoveStreamHandler(string httpMethod, string path) |
4199 | { | 4194 | { |
4200 | m_httpListener.RemoveStreamHandler(httpMethod, path); | 4195 | m_httpListener.RemoveStreamHandler(httpMethod, path); |
@@ -4205,11 +4200,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
4205 | m_httpListener.RemoveHTTPHandler(httpMethod, path); | 4200 | m_httpListener.RemoveHTTPHandler(httpMethod, path); |
4206 | } | 4201 | } |
4207 | 4202 | ||
4208 | public bool RemoveLLSDHandler(string path, LLSDMethod handler) | ||
4209 | { | ||
4210 | return m_httpListener.RemoveLLSDHandler(path, handler); | ||
4211 | } | ||
4212 | |||
4213 | #endregion | 4203 | #endregion |
4214 | 4204 | ||
4215 | #region Avatar Appearance Default | 4205 | #region Avatar Appearance Default |