aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorDiva Canto2011-05-08 16:51:41 -0700
committerDiva Canto2011-05-08 16:51:41 -0700
commit00f10c900ac9decd48f8508e96d36f53e933ff3c (patch)
treeade93c69f3dcdeccdf96f6ecb9e901bcc2df7ae2 /OpenSim/Framework/WebUtil.cs
parentFix content-type to be application/x-www-form-urlencoded (diff)
parentAlso compress the actual fatpacks (diff)
downloadopensim-SC_OLD-00f10c900ac9decd48f8508e96d36f53e933ff3c.zip
opensim-SC_OLD-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.gz
opensim-SC_OLD-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.bz2
opensim-SC_OLD-00f10c900ac9decd48f8508e96d36f53e933ff3c.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
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 6b8c3c0..55b38cd 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);