blob: dc44a8fa499b7068e18e3d386caa0c382d60bdf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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);
}
}
|