diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 15 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | 14 |
2 files changed, 29 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs new file mode 100644 index 0000000..23bdbb6 --- /dev/null +++ b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs | |||
@@ -0,0 +1,15 @@ | |||
1 | using libsecondlife; | ||
2 | using OpenSim.Region.Environment.Modules; | ||
3 | |||
4 | namespace OpenSim.Region.Environment.Interfaces | ||
5 | { | ||
6 | public interface IWorldComm | ||
7 | { | ||
8 | int Listen(uint LocalID, LLUUID itemID, LLUUID hostID, int channel, string name, string id, string msg); | ||
9 | void DeliverMessage(string sourceItemID, int type, int channel, string name, string msg); | ||
10 | bool HasMessages(); | ||
11 | ListenerInfo GetNextMessage(); | ||
12 | void ListenControl(int handle, int active); | ||
13 | void ListenRemove(int handle); | ||
14 | } | ||
15 | } \ No newline at end of file | ||
diff --git a/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs new file mode 100644 index 0000000..dc44a8f --- /dev/null +++ b/OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using libsecondlife; | ||
2 | using OpenSim.Region.Environment.Modules; | ||
3 | |||
4 | namespace OpenSim.Region.Environment.Interfaces | ||
5 | { | ||
6 | public interface IXMLRPC | ||
7 | { | ||
8 | LLUUID OpenXMLRPCChannel(uint localID, LLUUID itemID); | ||
9 | void CloseXMLRPCChannel(LLUUID channelKey); | ||
10 | bool hasRequests(); | ||
11 | RPCRequestInfo GetNextRequest(); | ||
12 | void RemoteDataReply(string channel, string message_id, string sdata, int idata); | ||
13 | } | ||
14 | } \ No newline at end of file | ||