From 29aa41daa004531cc41649c1818e4e432600cc32 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 5 Oct 2007 19:33:26 +0000 Subject: Code from Illumious Beltran (IBM) implementing more LSL The functions implemented are: llListen llListenControl llListenRemove llOpenRemoteDataChannel llCloseRemoteDataChannel llRemoteDataReply The events implemented are: listen remote_data --- OpenSim/Region/Environment/Scenes/Scene.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 579ec90..9e19a26 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -91,6 +91,8 @@ namespace OpenSim.Region.Environment.Scenes private IHttpRequests m_httpRequestModule = null; private ISimChat m_simChatModule = null; + private IXMLRPC m_xmlrpcModule = null; + private IWorldComm m_worldCommModule = null; // Central Update Loop @@ -210,6 +212,8 @@ namespace OpenSim.Region.Environment.Scenes { m_simChatModule = RequestModuleInterface(); m_httpRequestModule = RequestModuleInterface(); + m_xmlrpcModule = RequestModuleInterface(); + m_worldCommModule = RequestModuleInterface(); XferManager = RequestModuleInterface(); } -- cgit v1.1