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