diff options
author | Melanie | 2010-12-21 20:56:37 +0000 |
---|---|---|
committer | Melanie | 2010-12-21 20:56:37 +0000 |
commit | b1180a53dd8b73b817a9b5066942d8ae0a706f12 (patch) | |
tree | a085b4b8551da3067bf5e0f2604c2fd91379c33e /OpenSim/Framework | |
parent | Restore CM loking after core extract (diff) | |
parent | Fix up merge artifacts (diff) | |
download | opensim-SC-b1180a53dd8b73b817a9b5066942d8ae0a706f12.zip opensim-SC-b1180a53dd8b73b817a9b5066942d8ae0a706f12.tar.gz opensim-SC-b1180a53dd8b73b817a9b5066942d8ae0a706f12.tar.bz2 opensim-SC-b1180a53dd8b73b817a9b5066942d8ae0a706f12.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Capabilities/Caps.cs | 12 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BinaryStreamHandler.cs | 4 |
2 files changed, 7 insertions, 9 deletions
diff --git a/OpenSim/Framework/Capabilities/Caps.cs b/OpenSim/Framework/Capabilities/Caps.cs index 5937ae6..dbb0781 100644 --- a/OpenSim/Framework/Capabilities/Caps.cs +++ b/OpenSim/Framework/Capabilities/Caps.cs | |||
@@ -1344,7 +1344,11 @@ namespace OpenSim.Framework.Capabilities | |||
1344 | /// <returns></returns> | 1344 | /// <returns></returns> |
1345 | public string uploaderCaps(byte[] data, string path, string param) | 1345 | public string uploaderCaps(byte[] data, string path, string param) |
1346 | { | 1346 | { |
1347 | m_log.WarnFormat("[CAPS] baked texture upload completed for {0}",newAssetID); | 1347 | handlerUpLoad = OnUpLoad; |
1348 | if (handlerUpLoad != null) | ||
1349 | { | ||
1350 | Util.FireAndForget(delegate(object o) { handlerUpLoad(newAssetID, data); }); | ||
1351 | } | ||
1348 | 1352 | ||
1349 | string res = String.Empty; | 1353 | string res = String.Empty; |
1350 | LLSDAssetUploadComplete uploadComplete = new LLSDAssetUploadComplete(); | 1354 | LLSDAssetUploadComplete uploadComplete = new LLSDAssetUploadComplete(); |
@@ -1356,12 +1360,6 @@ namespace OpenSim.Framework.Capabilities | |||
1356 | 1360 | ||
1357 | httpListener.RemoveStreamHandler("POST", uploaderPath); | 1361 | httpListener.RemoveStreamHandler("POST", uploaderPath); |
1358 | 1362 | ||
1359 | handlerUpLoad = OnUpLoad; | ||
1360 | if (handlerUpLoad != null) | ||
1361 | { | ||
1362 | handlerUpLoad(newAssetID, data); | ||
1363 | } | ||
1364 | |||
1365 | m_log.InfoFormat("[CAPS] baked texture upload completed for {0}",newAssetID); | 1363 | m_log.InfoFormat("[CAPS] baked texture upload completed for {0}",newAssetID); |
1366 | 1364 | ||
1367 | return res; | 1365 | return res; |
diff --git a/OpenSim/Framework/Servers/HttpServer/BinaryStreamHandler.cs b/OpenSim/Framework/Servers/HttpServer/BinaryStreamHandler.cs index 86fa44d..bae4e1b 100644 --- a/OpenSim/Framework/Servers/HttpServer/BinaryStreamHandler.cs +++ b/OpenSim/Framework/Servers/HttpServer/BinaryStreamHandler.cs | |||
@@ -53,8 +53,8 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
53 | 53 | ||
54 | private static byte[] ReadFully(Stream stream) | 54 | private static byte[] ReadFully(Stream stream) |
55 | { | 55 | { |
56 | byte[] buffer = new byte[32768]; | 56 | byte[] buffer = new byte[1024]; |
57 | using (MemoryStream ms = new MemoryStream()) | 57 | using (MemoryStream ms = new MemoryStream(1024*256)) |
58 | { | 58 | { |
59 | while (true) | 59 | while (true) |
60 | { | 60 | { |