Is it possible to instead of receiving the push stream response in a chunked encoding format, e.g:
HTTP/1.1 200 OK\r\n
...
\r\n
[chunk length]\r\n
[chunk]
\r\n
[chunk length]\r\n
[chunk]
\r\n
...
and instead get response in the format of:
HTTP/1.1 200 OK\r\n
...
Content-Length: [chunk length]\r\n
...
\r\n
[chunk]
HTTP/1.1 200 OK\r\n
...
Content-Length: [chunk length]\r\n
...
\r\n
[chunk length]\r\n
...
e.g. in the series of HTTP objects with Content-Length over the same TCP connection? This is desirable as some web proxy out there do not always correctly implement chunked encoding and may be able to deal with HTTP responses with explicit Content-Length set.
thank you!
Ethan.