aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorMW2008-02-27 21:11:01 +0000
committerMW2008-02-27 21:11:01 +0000
commite978d00914a25c12cc03efd597125e2948526681 (patch)
treeaec69b83655fa054c364443a9163b95163f41cb3 /OpenSim/Framework/IClientAPI.cs
parent* Turned Friends Module into a shared module (to comply with Scene.AddXmlRPCH... (diff)
downloadopensim-SC_OLD-e978d00914a25c12cc03efd597125e2948526681.zip
opensim-SC_OLD-e978d00914a25c12cc03efd597125e2948526681.tar.gz
opensim-SC_OLD-e978d00914a25c12cc03efd597125e2948526681.tar.bz2
opensim-SC_OLD-e978d00914a25c12cc03efd597125e2948526681.tar.xz
After seeing sdague do his happy dance over trunk working "the best he has ever seen". I'm not sure I should be doing this commit, but oh well.
So anyway, it moves the Asset downloading (packet sending) to a module (AssetDownloadModule). So now at last, AssetCache should be just dealing with fetching assets from the asset server and caching them.
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 2635a23..511bbad 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -390,6 +390,8 @@ namespace OpenSim.Framework
390 public delegate void RemoveInventoryFolder( 390 public delegate void RemoveInventoryFolder(
391 IClientAPI remoteClient, LLUUID folderID); 391 IClientAPI remoteClient, LLUUID folderID);
392 392
393 public delegate void RequestAsset(IClientAPI remoteClient, TransferRequestPacket transferRequest);
394
393 public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID); 395 public delegate void RezScript(IClientAPI remoteClient, LLUUID itemID, uint localID);
394 396
395 public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID); 397 public delegate void UpdateTaskInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID folderID, uint localID);
@@ -503,6 +505,7 @@ namespace OpenSim.Framework
503 event RezScript OnRezScript; 505 event RezScript OnRezScript;
504 event UpdateTaskInventory OnUpdateTaskInventory; 506 event UpdateTaskInventory OnUpdateTaskInventory;
505 event RemoveTaskInventory OnRemoveTaskItem; 507 event RemoveTaskInventory OnRemoveTaskItem;
508 event RequestAsset OnRequestAsset;
506 509
507 event UUIDNameRequest OnNameFromUUIDRequest; 510 event UUIDNameRequest OnNameFromUUIDRequest;
508 511