add another thing ot iclient

This commit is contained in:
UbitUmarov
2020-08-26 15:12:31 +01:00
parent 1cbf5842a2
commit e7621244c1
4 changed files with 12 additions and 0 deletions

View File

@@ -1225,6 +1225,7 @@ namespace OpenSim.Framework
///
/// <param name="node"></param>
void SendBulkUpdateInventory(InventoryNodeBase node, UUID? transactionID = null);
void SendBulkUpdateInventory(InventoryFolderBase[] folders, InventoryItemBase[] items);
void SendXferPacket(ulong xferID, uint packet,
byte[] XferData, int XferDataOffset, int XferDatapktLen, bool isTaskInventory);

View File

@@ -1157,7 +1157,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
public void SendBulkUpdateInventory(InventoryNodeBase node, UUID? transactionID = null)
{
}
public void SendBulkUpdateInventory(InventoryFolderBase[] folders, InventoryItemBase[] items)
{
}
public void SendXferPacket(ulong xferID, uint packet,

View File

@@ -865,6 +865,10 @@ namespace OpenSim.Region.OptionalModules.World.NPC
{
}
public virtual void SendBulkUpdateInventory(InventoryFolderBase[] folders, InventoryItemBase[] items)
{
}
public void SendTakeControls(int controls, bool passToAgent, bool TakeControls)
{
}

View File

@@ -817,6 +817,10 @@ namespace OpenSim.Tests.Common
{
}
public virtual void SendBulkUpdateInventory(InventoryFolderBase[] folders, InventoryItemBase[] items)
{
}
public void SendTakeControls(int controls, bool passToAgent, bool TakeControls)
{
}