diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
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 | ||