mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 14:16:07 +08:00
* refactor: move code concerned with creating a subsequent image packet to LLClientView
This commit is contained in:
@@ -2619,6 +2619,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
im.Header.Zerocoded = true;
|
||||
OutPacket(im, ThrottleOutPacketType.Texture);
|
||||
}
|
||||
|
||||
public void SendImageNextPart(ushort partNumber, UUID imageUuid, byte[] imageData)
|
||||
{
|
||||
ImagePacketPacket im = new ImagePacketPacket();
|
||||
im.Header.Reliable = false;
|
||||
im.ImageID.Packet = partNumber;
|
||||
im.ImageID.ID = imageUuid;
|
||||
im.ImageData.Data = imageData;
|
||||
|
||||
OutPacket(im, ThrottleOutPacketType.Texture);
|
||||
}
|
||||
|
||||
public void SendShutdownConnectionNotice()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user