aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.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/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.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/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.cs b/OpenSim/Region/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.cs
index 4783f4c..ad0b83d 100644
--- a/OpenSim/Region/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/XmlRpcRouterModule/XmlRpcRouterModule.cs
@@ -101,12 +101,18 @@ namespace OpenSim.Region.OptionalModules.Scripting.XmlRpcRouterModule
101 scriptEngine.PostScriptEvent(itemID, "xmlrpc_uri", new Object[] {uri}); 101 scriptEngine.PostScriptEvent(itemID, "xmlrpc_uri", new Object[] {uri});
102 } 102 }
103 103
104 public void UnRegisterReceiver(string channelID, UUID itemID)
105 {
106 }
107
104 public void ScriptRemoved(UUID itemID) 108 public void ScriptRemoved(UUID itemID)
105 { 109 {
110 System.Console.WriteLine("TEST Script Removed!");
106 } 111 }
107 112
108 public void ObjectRemoved(UUID objectID) 113 public void ObjectRemoved(UUID objectID)
109 { 114 {
115 System.Console.WriteLine("TEST Obj Removed!");
110 } 116 }
111 } 117 }
112} 118}