aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 7a3931f..2be647f 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -340,6 +340,8 @@ namespace OpenSim.Framework
340 340
341 public delegate void EstateChangeInfo(IClientAPI client, UUID invoice, UUID senderID, UInt32 param1, UInt32 param2); 341 public delegate void EstateChangeInfo(IClientAPI client, UUID invoice, UUID senderID, UInt32 param1, UInt32 param2);
342 342
343 public delegate void RequestTerrain(IClientAPI remoteClient, string clientFileName);
344
343 public delegate void BakeTerrain(IClientAPI remoteClient); 345 public delegate void BakeTerrain(IClientAPI remoteClient);
344 346
345 public delegate void EstateRestartSimRequest(IClientAPI remoteClient, int secondsTilReboot); 347 public delegate void EstateRestartSimRequest(IClientAPI remoteClient, int secondsTilReboot);
@@ -651,6 +653,8 @@ namespace OpenSim.Framework
651 event ObjectBuy OnObjectBuy; 653 event ObjectBuy OnObjectBuy;
652 event BuyObjectInventory OnBuyObjectInventory; 654 event BuyObjectInventory OnBuyObjectInventory;
653 655
656 event RequestTerrain OnRequestTerrain;
657
654 event ObjectIncludeInSearch OnObjectIncludeInSearch; 658 event ObjectIncludeInSearch OnObjectIncludeInSearch;
655 659
656 event UUIDNameRequest OnTeleportHomeRequest; 660 event UUIDNameRequest OnTeleportHomeRequest;
@@ -906,6 +910,8 @@ namespace OpenSim.Framework
906 void SendConfirmXfer(ulong xferID, uint PacketID); 910 void SendConfirmXfer(ulong xferID, uint PacketID);
907 void SendXferRequest(ulong XferID, short AssetType, UUID vFileID, byte FilePath, byte[] FileName); 911 void SendXferRequest(ulong XferID, short AssetType, UUID vFileID, byte FilePath, byte[] FileName);
908 912
913 void SendInitiateDownload(string simFileName, string clientFileName);
914
909 /// <summary> 915 /// <summary>
910 /// Send the first part of a texture. For sufficiently small textures, this may be the only packet. 916 /// Send the first part of a texture. For sufficiently small textures, this may be the only packet.
911 /// </summary> 917 /// </summary>