mirror of
https://github.com/opensim/opensim.git
synced 2026-06-05 10:35:39 +08:00
The functions implemented are: llListen llListenControl llListenRemove llOpenRemoteDataChannel llCloseRemoteDataChannel llRemoteDataReply The events implemented are: listen remote_data
14 lines
430 B
C#
14 lines
430 B
C#
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);
|
|
}
|
|
} |