diff options
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.cs | 3 |
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 | ||