diff options
author | Melanie | 2013-03-26 03:26:28 +0000 |
---|---|---|
committer | Melanie | 2013-03-26 03:26:28 +0000 |
commit | 36c57bac8e86b5c64c5ef89a0dc24e55662ad34c (patch) | |
tree | db7079f27f7209f5eacdd27e9a25903d56030032 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMask (diff) | |
download | opensim-SC-36c57bac8e86b5c64c5ef89a0dc24e55662ad34c.zip opensim-SC-36c57bac8e86b5c64c5ef89a0dc24e55662ad34c.tar.gz opensim-SC-36c57bac8e86b5c64c5ef89a0dc24e55662ad34c.tar.bz2 opensim-SC-36c57bac8e86b5c64c5ef89a0dc24e55662ad34c.tar.xz |
Merge branch 'master' of ssh://melanie@3dhosting.de/var/git/careminster into careminster
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 5b2bad4..f8b9352 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -51,6 +51,7 @@ using RegionFlags = OpenMetaverse.RegionFlags; | |||
51 | using Nini.Config; | 51 | using Nini.Config; |
52 | 52 | ||
53 | using System.IO; | 53 | using System.IO; |
54 | using PermissionMask = OpenSim.Framework.PermissionMask; | ||
54 | 55 | ||
55 | namespace OpenSim.Region.ClientStack.LindenUDP | 56 | namespace OpenSim.Region.ClientStack.LindenUDP |
56 | { | 57 | { |
@@ -1802,7 +1803,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1802 | 1803 | ||
1803 | public void SendInventoryItemDetails(UUID ownerID, InventoryItemBase item) | 1804 | public void SendInventoryItemDetails(UUID ownerID, InventoryItemBase item) |
1804 | { | 1805 | { |
1805 | const uint FULL_MASK_PERMISSIONS = (uint)PermissionMask.All; | 1806 | // Fudge this value. It's only needed to make the CRC anyway |
1807 | const uint FULL_MASK_PERMISSIONS = (uint)0x7fffffff; | ||
1806 | 1808 | ||
1807 | FetchInventoryReplyPacket inventoryReply = (FetchInventoryReplyPacket)PacketPool.Instance.GetPacket(PacketType.FetchInventoryReply); | 1809 | FetchInventoryReplyPacket inventoryReply = (FetchInventoryReplyPacket)PacketPool.Instance.GetPacket(PacketType.FetchInventoryReply); |
1808 | // TODO: don't create new blocks if recycling an old packet | 1810 | // TODO: don't create new blocks if recycling an old packet |
@@ -2007,7 +2009,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2007 | 2009 | ||
2008 | protected void SendBulkUpdateInventoryItem(InventoryItemBase item) | 2010 | protected void SendBulkUpdateInventoryItem(InventoryItemBase item) |
2009 | { | 2011 | { |
2010 | const uint FULL_MASK_PERMISSIONS = (uint)PermissionMask.All; | 2012 | const uint FULL_MASK_PERMISSIONS = (uint)0x7ffffff; |
2011 | 2013 | ||
2012 | BulkUpdateInventoryPacket bulkUpdate | 2014 | BulkUpdateInventoryPacket bulkUpdate |
2013 | = (BulkUpdateInventoryPacket)PacketPool.Instance.GetPacket(PacketType.BulkUpdateInventory); | 2015 | = (BulkUpdateInventoryPacket)PacketPool.Instance.GetPacket(PacketType.BulkUpdateInventory); |
@@ -2066,7 +2068,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2066 | /// <see>IClientAPI.SendInventoryItemCreateUpdate(InventoryItemBase)</see> | 2068 | /// <see>IClientAPI.SendInventoryItemCreateUpdate(InventoryItemBase)</see> |
2067 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId) | 2069 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId) |
2068 | { | 2070 | { |
2069 | const uint FULL_MASK_PERMISSIONS = (uint)PermissionMask.All; | 2071 | const uint FULL_MASK_PERMISSIONS = (uint)0x7fffffff; |
2070 | 2072 | ||
2071 | UpdateCreateInventoryItemPacket InventoryReply | 2073 | UpdateCreateInventoryItemPacket InventoryReply |
2072 | = (UpdateCreateInventoryItemPacket)PacketPool.Instance.GetPacket( | 2074 | = (UpdateCreateInventoryItemPacket)PacketPool.Instance.GetPacket( |