use osutf8 on some http headers parse

This commit is contained in:
UbitUmarov
2022-03-16 15:56:00 +00:00
parent bfa620ed09
commit 3d705fefa2
6 changed files with 44 additions and 37 deletions

View File

@@ -114,12 +114,12 @@ namespace OpenSim.Framework
/// </summary>
public static OSDMap PutToServiceCompressed(string url, OSDMap data, int timeout)
{
return ServiceOSDRequest(url,data, "PUT", timeout, true, false);
return ServiceOSDRequest(url, data, "PUT", timeout, true, false);
}
public static OSDMap PutToService(string url, OSDMap data, int timeout)
{
return ServiceOSDRequest(url,data, "PUT", timeout, false, false);
return ServiceOSDRequest(url, data, "PUT", timeout, false, false);
}
public static OSDMap PostToService(string url, OSDMap data, int timeout, bool rpc)