From 45638cc1411b10164438f92a6fb08f97c276372a Mon Sep 17 00:00:00 2001
From: Justin Clarke Casey
Date: Wed, 13 Feb 2008 01:04:27 +0000
Subject: Commenting and a spelling correction
---
.../Communications/Cache/AgentAssetTransactions.cs | 4 ++--
.../Cache/AgentAssetTransactionsManager.cs | 16 +++++++++++++---
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs b/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs
index 92390b5..d40c354 100644
--- a/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs
+++ b/OpenSim/Framework/Communications/Cache/AgentAssetTransactions.cs
@@ -265,13 +265,13 @@ namespace OpenSim.Framework.Communications.Cache
}
else
{
- ReqestStartXfer();
+ RequestStartXfer();
}
return false;
}
- protected void ReqestStartXfer()
+ protected void RequestStartXfer()
{
UploadComplete = false;
XferID = Util.GetNextXferID();
diff --git a/OpenSim/Framework/Communications/Cache/AgentAssetTransactionsManager.cs b/OpenSim/Framework/Communications/Cache/AgentAssetTransactionsManager.cs
index 82fe4c0..bb523f4 100644
--- a/OpenSim/Framework/Communications/Cache/AgentAssetTransactionsManager.cs
+++ b/OpenSim/Framework/Communications/Cache/AgentAssetTransactionsManager.cs
@@ -118,7 +118,7 @@ namespace OpenSim.Framework.Communications.Cache
uint callbackID, string description, string name, sbyte invType,
sbyte type, byte wearableType, uint nextOwnerMask)
{
- m_log.InfoFormat(
+ m_log.DebugFormat(
"[TRANSACTIONS MANAGER] Called HandleItemCreationFromTransaction with item {0}", name);
AgentAssetTransactions transactions = GetUserTransactions(remoteClient.AgentId);
@@ -140,7 +140,7 @@ namespace OpenSim.Framework.Communications.Cache
public void HandleItemUpdateFromTransaction(IClientAPI remoteClient, LLUUID transactionID,
InventoryItemBase item)
{
- m_log.InfoFormat(
+ m_log.DebugFormat(
"[TRANSACTIONS MANAGER] Called HandleItemUpdateFromTransaction with item {0}",
item.inventoryName);
@@ -150,6 +150,15 @@ namespace OpenSim.Framework.Communications.Cache
transactions.RequestUpdateInventoryItem(remoteClient, transactionID, item);
}
+ ///
+ /// Request that a client (agent) begin an asset transfer.
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
public void HandleUDPUploadRequest(IClientAPI remoteClient, LLUUID assetID, LLUUID transaction, sbyte type,
byte[] data, bool storeLocal, bool tempFile)
{
@@ -177,7 +186,8 @@ namespace OpenSim.Framework.Communications.Cache
}
///
- /// Conduct an asset transfer from the client.
+ /// Handle asset transfer data packets received in response to the asset upload request in
+ /// HandleUDPUploadRequest()
///
///
///
--
cgit v1.1