Use the "Content-Encoding" header to indicate gzipped streams
parent
8ecab21b37
commit
b1d8aa0b64
|
@ -833,7 +833,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
|
||||
Stream inputStream = Util.Copy(request.InputStream);
|
||||
|
||||
if (request.ContentType == "application/x-gzip")
|
||||
if (request.Headers["Content-Encoding"] == "gzip")
|
||||
inputStream = new GZipStream(inputStream, System.IO.Compression.CompressionMode.Decompress);
|
||||
|
||||
using (StreamReader reader = new StreamReader(inputStream, Encoding.UTF8))
|
||||
|
|
|
@ -181,7 +181,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
_request = req;
|
||||
_context = context;
|
||||
|
||||
if (null != req.Headers["content-encoding"])
|
||||
if ((null != req.Headers["content-encoding"]) && ("gzip" != req.Headers["content-encoding"]))
|
||||
_contentEncoding = Encoding.GetEncoding(_request.Headers["content-encoding"]);
|
||||
if (null != req.Headers["content-type"])
|
||||
_contentType = _request.Headers["content-type"];
|
||||
|
|
|
@ -250,9 +250,12 @@ namespace OpenSim.Framework
|
|||
|
||||
byte[] buffer = System.Text.Encoding.UTF8.GetBytes(strBuffer);
|
||||
|
||||
request.ContentType = "application/json";
|
||||
|
||||
if (compressed)
|
||||
{
|
||||
request.ContentType = "application/x-gzip";
|
||||
request.Headers["Content-Encoding"] = "gzip";
|
||||
|
||||
using (MemoryStream ms = new MemoryStream())
|
||||
{
|
||||
using (GZipStream comp = new GZipStream(ms, CompressionMode.Compress))
|
||||
|
@ -270,10 +273,9 @@ namespace OpenSim.Framework
|
|||
}
|
||||
else
|
||||
{
|
||||
request.ContentType = "application/json";
|
||||
request.ContentLength = buffer.Length; //Count bytes to send
|
||||
using (Stream requestStream = request.GetRequestStream())
|
||||
requestStream.Write(buffer, 0, buffer.Length); //Send it
|
||||
requestStream.Write(buffer, 0, buffer.Length); //Send it
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -232,17 +232,16 @@ namespace OpenSim.Server.Handlers.Simulation
|
|||
httpResponse.KeepAlive = false;
|
||||
Encoding encoding = Encoding.UTF8;
|
||||
|
||||
Stream inputStream = null;
|
||||
if (httpRequest.ContentType == "application/x-gzip")
|
||||
inputStream = new GZipStream(request, CompressionMode.Decompress);
|
||||
else if (httpRequest.ContentType == "application/json")
|
||||
inputStream = request;
|
||||
else // no go
|
||||
if (httpRequest.ContentType != "application/json")
|
||||
{
|
||||
httpResponse.StatusCode = 406;
|
||||
return encoding.GetBytes("false");
|
||||
}
|
||||
|
||||
Stream inputStream = request;
|
||||
if (httpRequest.Headers["Content-Encoding"] == "gzip")
|
||||
inputStream = new GZipStream(inputStream, CompressionMode.Decompress);
|
||||
|
||||
StreamReader reader = new StreamReader(inputStream, encoding);
|
||||
|
||||
string requestBody = reader.ReadToEnd();
|
||||
|
@ -433,11 +432,9 @@ namespace OpenSim.Server.Handlers.Simulation
|
|||
keysvals.Add("headers", headervals);
|
||||
keysvals.Add("querystringkeys", querystringkeys);
|
||||
|
||||
Stream inputStream;
|
||||
if (httpRequest.ContentType == "application/x-gzip")
|
||||
inputStream = new GZipStream(request, CompressionMode.Decompress);
|
||||
else
|
||||
inputStream = request;
|
||||
Stream inputStream = request;
|
||||
if (httpRequest.Headers["Content-Encoding"] == "gzip")
|
||||
inputStream = new GZipStream(inputStream, CompressionMode.Decompress);
|
||||
|
||||
Encoding encoding = Encoding.UTF8;
|
||||
StreamReader reader = new StreamReader(inputStream, encoding);
|
||||
|
|
Loading…
Reference in New Issue