* refactor: move code concerned with creating a subsequent image packet to LLClientView

This commit is contained in:
Justin Clarke Casey
2008-10-15 15:30:27 +00:00
parent 063ba29ff8
commit 2226626fec
5 changed files with 32 additions and 9 deletions

View File

@@ -802,6 +802,15 @@ namespace OpenSim.Framework
/// <param name="ImageData"></param>
/// <param name="imageCodec"></param>
void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
/// <summary>
/// Send the next packet for a series of packets making up a single texture,
/// as established by SendImageFirstPart()
/// </summary>
/// <param name="partNumber"></param>
/// <param name="imageUuid"></param>
/// <param name="imageData"></param>
void SendImageNextPart(ushort partNumber, UUID imageUuid, byte[] imageData);
void SendShutdownConnectionNotice();