aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMelanie2010-12-30 00:31:59 +0100
committerMelanie2010-12-30 01:36:09 +0000
commita32f80b9e3a84852558150c3b30722b6755a1ff0 (patch)
tree0dbb8375e701e59f08884be256afbc704ed3b1ef /OpenSim/Framework/IClientAPI.cs
parentBug fix in neighbors: serverURI now always has a trailing '/'... neighbors we... (diff)
downloadopensim-SC_OLD-a32f80b9e3a84852558150c3b30722b6755a1ff0.zip
opensim-SC_OLD-a32f80b9e3a84852558150c3b30722b6755a1ff0.tar.gz
opensim-SC_OLD-a32f80b9e3a84852558150c3b30722b6755a1ff0.tar.bz2
opensim-SC_OLD-a32f80b9e3a84852558150c3b30722b6755a1ff0.tar.xz
Implement SendPlacesReply
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 21ffa9a..a6be157 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -584,6 +584,23 @@ namespace OpenSim.Framework
584 } 584 }
585 } 585 }
586 586
587 public class PlacesReplyData
588 {
589 public UUID OwnerID;
590 public string Name;
591 public string Desc;
592 public int ActualArea;
593 public int BillableArea;
594 public byte Flags;
595 public uint GlobalX;
596 public uint GlobalY;
597 public uint GlobalZ;
598 public string SimName;
599 public UUID SnapshotID;
600 public uint Dwell;
601 public int Price;
602 }
603
587 /// <summary> 604 /// <summary>
588 /// Specifies the fields that have been changed when sending a prim or 605 /// Specifies the fields that have been changed when sending a prim or
589 /// avatar update 606 /// avatar update
@@ -1316,5 +1333,7 @@ namespace OpenSim.Framework
1316 void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); 1333 void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId);
1317 1334
1318 void StopFlying(ISceneEntity presence); 1335 void StopFlying(ISceneEntity presence);
1336
1337 void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data);
1319 } 1338 }
1320} 1339}