aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-15 14:56:58 +0000
committerJustin Clarke Casey2008-10-15 14:56:58 +0000
commit063ba29ff8e6fa6982203d74b0c3ad75342490e8 (patch)
treeafdb0283dded84402c20801b331c71a1e5969728 /OpenSim/Framework/IClientAPI.cs
parent* Create a new ViewerEffectPacket for each viewer rather than reusing the pac... (diff)
downloadopensim-SC_OLD-063ba29ff8e6fa6982203d74b0c3ad75342490e8.zip
opensim-SC_OLD-063ba29ff8e6fa6982203d74b0c3ad75342490e8.tar.gz
opensim-SC_OLD-063ba29ff8e6fa6982203d74b0c3ad75342490e8.tar.bz2
opensim-SC_OLD-063ba29ff8e6fa6982203d74b0c3ad75342490e8.tar.xz
* refactor: rename SendImagePart to SendImageFirstPart since this is more descriptive of its actual function
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index bacdc62..d370aed 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -793,7 +793,15 @@ namespace OpenSim.Framework
793 void SendConfirmXfer(ulong xferID, uint PacketID); 793 void SendConfirmXfer(ulong xferID, uint PacketID);
794 void SendXferRequest(ulong XferID, short AssetType, UUID vFileID, byte FilePath, byte[] FileName); 794 void SendXferRequest(ulong XferID, short AssetType, UUID vFileID, byte FilePath, byte[] FileName);
795 795
796 void SendImagePart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec); 796 /// <summary>
797 /// Send the first part of a texture. For sufficiently small textures, this may be the only packet.
798 /// </summary>
799 /// <param name="numParts"></param>
800 /// <param name="ImageUUID"></param>
801 /// <param name="ImageSize"></param>
802 /// <param name="ImageData"></param>
803 /// <param name="imageCodec"></param>
804 void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
797 805
798 void SendShutdownConnectionNotice(); 806 void SendShutdownConnectionNotice();
799 807