From 13e3ffada36529bd64909d272b4e25145c26e4c8 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sun, 5 Oct 2008 02:25:53 +0000 Subject: Plumb in the DirPlacesReply packet --- OpenSim/Framework/IClientAPI.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'OpenSim/Framework/IClientAPI.cs') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 2ae66e4..c0d133e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -312,6 +312,15 @@ namespace OpenSim.Framework public delegate void DirPlacesQuery(IClientAPI remoteClient, UUID queryID, string queryText, int queryFlags, int category, string simName, int queryStart); #endregion + public struct DirPlacesReplyData + { + public UUID parcelID; + public string name; + public bool forSale; + public bool auction; + public float dwell; + } + public interface IClientAPI { Vector3 StartPos { get; set; } @@ -764,6 +773,8 @@ namespace OpenSim.Framework void SendRegionHandle(UUID regoinID, ulong handle); void SendParcelInfo(RegionInfo info, LandData land, UUID parcelID, uint x, uint y); void SendScriptTeleportRequest(string objName, string simName, Vector3 pos, Vector3 lookAt); + + void SendDirPlacesReply(UUID queryID, DirPlacesReplyData[] data); void KillEndDone(); } } -- cgit v1.1