diff options
author | Sean Dague | 2007-10-05 19:33:26 +0000 |
---|---|---|
committer | Sean Dague | 2007-10-05 19:33:26 +0000 |
commit | 29aa41daa004531cc41649c1818e4e432600cc32 (patch) | |
tree | 6d2e3574b7222137a83fc6ba6502b197efb89bfc /OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | |
parent | getting all our line endings consistant again (diff) | |
download | opensim-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 'OpenSim/Region/Environment/Interfaces/IXMLRPC.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IXMLRPC.cs | 14 |
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 @@ | |||
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 | ||