* refactor: rename SendImagePart to SendImageFirstPart since this is more descriptive of its actual function

This commit is contained in:
Justin Clarke Casey
2008-10-15 14:56:58 +00:00
parent 8ba8b0300a
commit 063ba29ff8
5 changed files with 16 additions and 10 deletions

View File

@@ -793,7 +793,15 @@ namespace OpenSim.Framework
void SendConfirmXfer(ulong xferID, uint PacketID);
void SendXferRequest(ulong XferID, short AssetType, UUID vFileID, byte FilePath, byte[] FileName);
void SendImagePart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
/// <summary>
/// Send the first part of a texture. For sufficiently small textures, this may be the only packet.
/// </summary>
/// <param name="numParts"></param>
/// <param name="ImageUUID"></param>
/// <param name="ImageSize"></param>
/// <param name="ImageData"></param>
/// <param name="imageCodec"></param>
void SendImageFirstPart(ushort numParts, UUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
void SendShutdownConnectionNotice();