aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IWorldComm.cs
diff options
context:
space:
mode:
authorSean Dague2007-10-05 19:33:26 +0000
committerSean Dague2007-10-05 19:33:26 +0000
commit29aa41daa004531cc41649c1818e4e432600cc32 (patch)
tree6d2e3574b7222137a83fc6ba6502b197efb89bfc /OpenSim/Region/Environment/Interfaces/IWorldComm.cs
parentgetting all our line endings consistant again (diff)
downloadopensim-SC_OLD-29aa41daa004531cc41649c1818e4e432600cc32.zip
opensim-SC_OLD-29aa41daa004531cc41649c1818e4e432600cc32.tar.gz
opensim-SC_OLD-29aa41daa004531cc41649c1818e4e432600cc32.tar.bz2
opensim-SC_OLD-29aa41daa004531cc41649c1818e4e432600cc32.tar.xz
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
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IWorldComm.cs15
1 files changed, 15 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 @@
1using libsecondlife;
2using OpenSim.Region.Environment.Modules;
3
4namespace 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