aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IXMLRPC.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/IXMLRPC.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/IXMLRPC.cs14
1 files changed, 14 insertions, 0 deletions
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 @@
1using libsecondlife;
2using OpenSim.Region.Environment.Modules;
3
4namespace 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