diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index f04a70a..1c16a95 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -59,7 +59,14 @@ namespace OpenSim.Region.ClientStack | |||
59 | //local handlers for this instance | 59 | //local handlers for this instance |
60 | 60 | ||
61 | private LLUUID m_sessionId; | 61 | private LLUUID m_sessionId; |
62 | public LLUUID SecureSessionID = LLUUID.Zero; | 62 | |
63 | private LLUUID m_secureSessionId = LLUUID.Zero; | ||
64 | |||
65 | public LLUUID SecureSessionId | ||
66 | { | ||
67 | get { return m_secureSessionId; } | ||
68 | } | ||
69 | |||
63 | public string firstName; | 70 | public string firstName; |
64 | public string lastName; | 71 | public string lastName; |
65 | private UseCircuitCodePacket cirpack; | 72 | private UseCircuitCodePacket cirpack; |
@@ -540,7 +547,7 @@ namespace OpenSim.Region.ClientStack | |||
540 | 547 | ||
541 | if (sessionInfo.LoginInfo.SecureSession != LLUUID.Zero) | 548 | if (sessionInfo.LoginInfo.SecureSession != LLUUID.Zero) |
542 | { | 549 | { |
543 | SecureSessionID = sessionInfo.LoginInfo.SecureSession; | 550 | m_secureSessionId = sessionInfo.LoginInfo.SecureSession; |
544 | } | 551 | } |
545 | InitNewClient(); | 552 | InitNewClient(); |
546 | 553 | ||
@@ -615,7 +622,7 @@ namespace OpenSim.Region.ClientStack | |||
615 | public event FetchInventoryDescendents OnFetchInventoryDescendents; | 622 | public event FetchInventoryDescendents OnFetchInventoryDescendents; |
616 | public event FetchInventory OnFetchInventory; | 623 | public event FetchInventory OnFetchInventory; |
617 | public event RequestTaskInventory OnRequestTaskInventory; | 624 | public event RequestTaskInventory OnRequestTaskInventory; |
618 | public event UpdateInventoryItemTransaction OnUpdateInventoryItem; | 625 | public event UpdateInventoryItem OnUpdateInventoryItem; |
619 | public event CopyInventoryItem OnCopyInventoryItem; | 626 | public event CopyInventoryItem OnCopyInventoryItem; |
620 | public event UDPAssetUploadRequest OnAssetUploadRequest; | 627 | public event UDPAssetUploadRequest OnAssetUploadRequest; |
621 | public event XferReceive OnXferReceive; | 628 | public event XferReceive OnXferReceive; |
@@ -888,7 +895,7 @@ namespace OpenSim.Region.ClientStack | |||
888 | AgentCircuitData agentData = new AgentCircuitData(); | 895 | AgentCircuitData agentData = new AgentCircuitData(); |
889 | agentData.AgentID = AgentId; | 896 | agentData.AgentID = AgentId; |
890 | agentData.SessionID = m_sessionId; | 897 | agentData.SessionID = m_sessionId; |
891 | agentData.SecureSessionID = SecureSessionID; | 898 | agentData.SecureSessionID = SecureSessionId; |
892 | agentData.circuitcode = m_circuitCode; | 899 | agentData.circuitcode = m_circuitCode; |
893 | agentData.child = false; | 900 | agentData.child = false; |
894 | agentData.firstname = firstName; | 901 | agentData.firstname = firstName; |
@@ -2953,10 +2960,10 @@ namespace OpenSim.Region.ClientStack | |||
2953 | case PacketType.AssetUploadRequest: | 2960 | case PacketType.AssetUploadRequest: |
2954 | AssetUploadRequestPacket request = (AssetUploadRequestPacket) Pack; | 2961 | AssetUploadRequestPacket request = (AssetUploadRequestPacket) Pack; |
2955 | // Console.WriteLine("upload request " + Pack.ToString()); | 2962 | // Console.WriteLine("upload request " + Pack.ToString()); |
2956 | // Console.WriteLine("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionID).ToStringHyphenated()); | 2963 | // Console.WriteLine("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionId).ToStringHyphenated()); |
2957 | if (OnAssetUploadRequest != null) | 2964 | if (OnAssetUploadRequest != null) |
2958 | { | 2965 | { |
2959 | OnAssetUploadRequest(this, request.AssetBlock.TransactionID.Combine(SecureSessionID), | 2966 | OnAssetUploadRequest(this, request.AssetBlock.TransactionID.Combine(SecureSessionId), |
2960 | request.AssetBlock.TransactionID, request.AssetBlock.Type, | 2967 | request.AssetBlock.TransactionID, request.AssetBlock.Type, |
2961 | request.AssetBlock.AssetData, request.AssetBlock.StoreLocal); | 2968 | request.AssetBlock.AssetData, request.AssetBlock.StoreLocal); |
2962 | } | 2969 | } |
@@ -3033,12 +3040,11 @@ namespace OpenSim.Region.ClientStack | |||
3033 | { | 3040 | { |
3034 | for (int i = 0; i < update.InventoryData.Length; i++) | 3041 | for (int i = 0; i < update.InventoryData.Length; i++) |
3035 | { | 3042 | { |
3036 | if (update.InventoryData[i].TransactionID != LLUUID.Zero) | 3043 | OnUpdateInventoryItem(this, update.InventoryData[i].TransactionID, |
3037 | { | 3044 | update.InventoryData[i].ItemID, |
3038 | OnUpdateInventoryItem(this, update.InventoryData[i].TransactionID, | 3045 | Util.FieldToString(update.InventoryData[i].Name), |
3039 | update.InventoryData[i].TransactionID.Combine(SecureSessionID), | 3046 | Util.FieldToString(update.InventoryData[i].Description), |
3040 | update.InventoryData[i].ItemID); | 3047 | update.InventoryData[i].NextOwnerMask); |
3041 | } | ||
3042 | } | 3048 | } |
3043 | } | 3049 | } |
3044 | //Console.WriteLine(Pack.ToString()); | 3050 | //Console.WriteLine(Pack.ToString()); |
@@ -3046,7 +3052,7 @@ namespace OpenSim.Region.ClientStack | |||
3046 | { | 3052 | { |
3047 | if (update.InventoryData[i].TransactionID != LLUUID.Zero) | 3053 | if (update.InventoryData[i].TransactionID != LLUUID.Zero) |
3048 | { | 3054 | { |
3049 | AssetBase asset = m_assetCache.GetAsset(update.InventoryData[i].TransactionID.Combine(this.SecureSessionID)); | 3055 | AssetBase asset = m_assetCache.GetAsset(update.InventoryData[i].TransactionID.Combine(this.SecureSessionId)); |
3050 | if (asset != null) | 3056 | if (asset != null) |
3051 | { | 3057 | { |
3052 | // Console.WriteLine("updating inventory item, found asset" + asset.FullID.ToStringHyphenated() + " already in cache"); | 3058 | // Console.WriteLine("updating inventory item, found asset" + asset.FullID.ToStringHyphenated() + " already in cache"); |