diff options
author | UbitUmarov | 2012-09-22 21:14:15 +0100 |
---|---|---|
committer | UbitUmarov | 2012-09-22 21:14:15 +0100 |
commit | 11e05217df2de7ce7da581a2332ee4871f75a527 (patch) | |
tree | 2ec4e2bdf1d9f85f02089e029832c31b8872f189 /OpenSim/Capabilities/LLSDAssetUploadComplete.cs | |
parent | removed AssetUploaderWithCost, fixing AssetUploader. add parsing of some (diff) | |
download | opensim-SC-11e05217df2de7ce7da581a2332ee4871f75a527.zip opensim-SC-11e05217df2de7ce7da581a2332ee4871f75a527.tar.gz opensim-SC-11e05217df2de7ce7da581a2332ee4871f75a527.tar.bz2 opensim-SC-11e05217df2de7ce7da581a2332ee4871f75a527.tar.xz |
report asset upload errors the right away
Diffstat (limited to 'OpenSim/Capabilities/LLSDAssetUploadComplete.cs')
-rw-r--r-- | OpenSim/Capabilities/LLSDAssetUploadComplete.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Capabilities/LLSDAssetUploadComplete.cs b/OpenSim/Capabilities/LLSDAssetUploadComplete.cs index ab6cee5..596a556 100644 --- a/OpenSim/Capabilities/LLSDAssetUploadComplete.cs +++ b/OpenSim/Capabilities/LLSDAssetUploadComplete.cs | |||
@@ -30,12 +30,14 @@ using OpenMetaverse; | |||
30 | 30 | ||
31 | namespace OpenSim.Framework.Capabilities | 31 | namespace OpenSim.Framework.Capabilities |
32 | { | 32 | { |
33 | |||
33 | [LLSDType("MAP")] | 34 | [LLSDType("MAP")] |
34 | public class LLSDAssetUploadComplete | 35 | public class LLSDAssetUploadComplete |
35 | { | 36 | { |
36 | public string new_asset = String.Empty; | 37 | public string new_asset = String.Empty; |
37 | public UUID new_inventory_item = UUID.Zero; | 38 | public UUID new_inventory_item = UUID.Zero; |
38 | public string state = String.Empty; | 39 | public string state = String.Empty; |
40 | public LLSDAssetUploadError error = null; | ||
39 | //public bool success = false; | 41 | //public bool success = false; |
40 | 42 | ||
41 | public LLSDAssetUploadComplete() | 43 | public LLSDAssetUploadComplete() |