mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
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
This commit is contained in:
15
OpenSim/Region/Environment/Interfaces/IWorldComm.cs
Normal file
15
OpenSim/Region/Environment/Interfaces/IWorldComm.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using libsecondlife;
|
||||
using OpenSim.Region.Environment.Modules;
|
||||
|
||||
namespace OpenSim.Region.Environment.Interfaces
|
||||
{
|
||||
public interface IWorldComm
|
||||
{
|
||||
int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg);
|
||||
void DeliverMessage(string sourceItemID, int type, int channel, string name, string msg);
|
||||
bool HasMessages();
|
||||
ListenerInfo GetNextMessage();
|
||||
void ListenControl(int handle, int active);
|
||||
void ListenRemove(int handle);
|
||||
}
|
||||
}
|
||||
14
OpenSim/Region/Environment/Interfaces/IXMLRPC.cs
Normal file
14
OpenSim/Region/Environment/Interfaces/IXMLRPC.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using libsecondlife;
|
||||
using OpenSim.Region.Environment.Modules;
|
||||
|
||||
namespace OpenSim.Region.Environment.Interfaces
|
||||
{
|
||||
public interface IXMLRPC
|
||||
{
|
||||
LLUUID OpenXMLRPCChannel(uint localID, LLUUID itemID);
|
||||
void CloseXMLRPCChannel(LLUUID channelKey);
|
||||
bool hasRequests();
|
||||
RPCRequestInfo GetNextRequest();
|
||||
void RemoteDataReply(string channel, string message_id, string sdata, int idata);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user