aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorMelanie2011-05-08 23:23:33 +0200
committerMelanie2011-05-08 23:52:31 +0100
commitc8b955803953e46f5695d3faac1f363406074ffa (patch)
tree33068067e6ba058f18c8dad9da5d44221769e631 /OpenSim/Framework/WebUtil.cs
parentRemove a spammy debug I left in. Disable TP cancel button at the point (diff)
downloadopensim-SC_OLD-c8b955803953e46f5695d3faac1f363406074ffa.zip
opensim-SC_OLD-c8b955803953e46f5695d3faac1f363406074ffa.tar.gz
opensim-SC_OLD-c8b955803953e46f5695d3faac1f363406074ffa.tar.bz2
opensim-SC_OLD-c8b955803953e46f5695d3faac1f363406074ffa.tar.xz
Also compress the actual fatpacks
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r--OpenSim/Framework/WebUtil.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 18e50a2..6ca65ae 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -141,6 +141,11 @@ namespace OpenSim.Framework
141 /// PUT JSON-encoded data to a web service that returns LLSD or 141 /// PUT JSON-encoded data to a web service that returns LLSD or
142 /// JSON data 142 /// JSON data
143 /// </summary> 143 /// </summary>
144 public static OSDMap PutToServiceCompressed(string url, OSDMap data, int timeout)
145 {
146 return ServiceOSDRequest(url,data, "PUT", timeout, true);
147 }
148
144 public static OSDMap PutToService(string url, OSDMap data, int timeout) 149 public static OSDMap PutToService(string url, OSDMap data, int timeout)
145 { 150 {
146 return ServiceOSDRequest(url,data, "PUT", timeout, false); 151 return ServiceOSDRequest(url,data, "PUT", timeout, false);