diff options
author | UbitUmarov | 2019-06-09 20:15:36 +0100 |
---|---|---|
committer | UbitUmarov | 2019-06-09 20:15:36 +0100 |
commit | 9ff7601214c8cbc022308dc62ed8aa321598a1df (patch) | |
tree | 448b410a8b8e90ddf02d5625a7a148b4275b6a50 /OpenSim/Framework/IClientAPI.cs | |
parent | mantis 8460: reduce odds of watchdog timeout warning (diff) | |
download | opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.zip opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.gz opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.bz2 opensim-SC-9ff7601214c8cbc022308dc62ed8aa321598a1df.tar.xz |
reduce some useless array copies
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 8d0cb5a..68ca52e 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1235,7 +1235,8 @@ namespace OpenSim.Framework | |||
1235 | /// <param name="node"></param> | 1235 | /// <param name="node"></param> |
1236 | void SendBulkUpdateInventory(InventoryNodeBase node); | 1236 | void SendBulkUpdateInventory(InventoryNodeBase node); |
1237 | 1237 | ||
1238 | void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory); | 1238 | void SendXferPacket(ulong xferID, uint packet, |
1239 | byte[] XferData, int XferDataOffset, int XferDatapktLen, bool isTaskInventory); | ||
1239 | 1240 | ||
1240 | void SendAbortXferPacket(ulong xferID); | 1241 | void SendAbortXferPacket(ulong xferID); |
1241 | 1242 | ||