aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-10 12:45:41 +0000
committerTeravus Ovares2008-05-10 12:45:41 +0000
commitb67f88a3a21c446f0c30e52cea45d8ff28942ec0 (patch)
tree6f41dce35dd8a94a24b73f766df39f7c1b5b7936 /OpenSim/Framework/IClientAPI.cs
parentRefactored out a few warnings related to Adam's bane OutPacket (diff)
downloadopensim-SC_OLD-b67f88a3a21c446f0c30e52cea45d8ff28942ec0.zip
opensim-SC_OLD-b67f88a3a21c446f0c30e52cea45d8ff28942ec0.tar.gz
opensim-SC_OLD-b67f88a3a21c446f0c30e52cea45d8ff28942ec0.tar.bz2
opensim-SC_OLD-b67f88a3a21c446f0c30e52cea45d8ff28942ec0.tar.xz
* Two more OutPacket refactors. TextureSender.
* The split image packet sender doesn't like to be refactored (images don't load after it's been refactored), so left that as is for the moment.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 9927808..3ae90f3 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -936,6 +936,8 @@ namespace OpenSim.Framework
936 void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, LLUUID AssetFullID); 936 void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, LLUUID AssetFullID);
937 void SendConfirmXfer(ulong xferID, uint PacketID); 937 void SendConfirmXfer(ulong xferID, uint PacketID);
938 void SendXferRequest(ulong XferID, short AssetType, LLUUID vFileID, byte FilePath, byte[] FileName); 938 void SendXferRequest(ulong XferID, short AssetType, LLUUID vFileID, byte FilePath, byte[] FileName);
939
940 void SendImagePart(ushort numParts, LLUUID ImageUUID, uint ImageSize, byte[] ImageData, byte imageCodec);
939 941
940 byte[] GetThrottlesPacked(float multiplier); 942 byte[] GetThrottlesPacked(float multiplier);
941 943