aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs
diff options
context:
space:
mode:
authorBlueWall2012-12-03 20:09:54 -0500
committerBlueWall2012-12-03 20:16:44 -0500
commitac65085cc36bb4820482bf769b4be44e1c8d58ce (patch)
tree6ab12f415b82e126fefae5446390d2a5fb04a502 /OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs
parentBulletSim: fix boats floating low by removing LIMIT_MOTOR_UP flag from TYPE_B... (diff)
downloadopensim-SC_OLD-ac65085cc36bb4820482bf769b4be44e1c8d58ce.zip
opensim-SC_OLD-ac65085cc36bb4820482bf769b4be44e1c8d58ce.tar.gz
opensim-SC_OLD-ac65085cc36bb4820482bf769b4be44e1c8d58ce.tar.bz2
opensim-SC_OLD-ac65085cc36bb4820482bf769b4be44e1c8d58ce.tar.xz
XmlRpcGridRouter
Flesh out XmlRpcGridRouter to reap unused channels from gateway when scripts or objects are removed, or when the llCloseRemoteDataChannel is called. See: http://http://forge.opensimulator.org/gf/project/xmlrpcrouter/ or https://github.com/BlueWall/XmlRpcRouter for php gateway and test code.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs b/OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs
index 6db6674..093d3f0 100644
--- a/OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs
+++ b/OpenSim/Region/Framework/Interfaces/IXmlRpcRouter.cs
@@ -34,5 +34,6 @@ namespace OpenSim.Region.Framework.Interfaces
34 void RegisterNewReceiver(IScriptModule scriptEngine, UUID channelID, UUID objectID, UUID itemID, string url); 34 void RegisterNewReceiver(IScriptModule scriptEngine, UUID channelID, UUID objectID, UUID itemID, string url);
35 void ScriptRemoved(UUID itemID); 35 void ScriptRemoved(UUID itemID);
36 void ObjectRemoved(UUID objectID); 36 void ObjectRemoved(UUID objectID);
37 void UnRegisterReceiver(string channelID, UUID itemID);
37 } 38 }
38} 39}