aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-15 15:30:27 +0000
committerJustin Clarke Casey2008-10-15 15:30:27 +0000
commit2226626fec4e8459873fdd7586c07c98401cdb5d (patch)
treecc079e70b4f12ec4796aa9a2cd26c4c461fd3e36 /OpenSim/Framework/IClientAPI.cs
parent* refactor: rename SendImagePart to SendImageFirstPart since this is more des... (diff)
downloadopensim-SC_OLD-2226626fec4e8459873fdd7586c07c98401cdb5d.zip
opensim-SC_OLD-2226626fec4e8459873fdd7586c07c98401cdb5d.tar.gz
opensim-SC_OLD-2226626fec4e8459873fdd7586c07c98401cdb5d.tar.bz2
opensim-SC_OLD-2226626fec4e8459873fdd7586c07c98401cdb5d.tar.xz
* refactor: move code concerned with creating a subsequent image packet to LLClientView
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index d370aed..d5d4c34 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -802,6 +802,15 @@ namespace OpenSim.Framework
802 /// <param name="ImageData"></param> 802 /// <param name="ImageData"></param>
803 /// <param name="imageCodec"></param> 803 /// <param name="imageCodec"></param>
804 void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec); 804 void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
805
806 /// <summary>
807 /// Send the next packet for a series of packets making up a single texture,
808 /// as established by SendImageFirstPart()
809 /// </summary>
810 /// <param name="partNumber"></param>
811 /// <param name="imageUuid"></param>
812 /// <param name="imageData"></param>
813 void SendImageNextPart(ushort partNumber, UUID imageUuid, byte[] imageData);
805 814
806 void SendShutdownConnectionNotice(); 815 void SendShutdownConnectionNotice();
807 816