> -----Original Message-----
> From: Yann Ylavic [mailto:[email protected]]
> Sent: dinsdag 17 november 2015 00:49
> To: httpd-dev <[email protected]>
> Subject: Re: mod_http2 / H2WindowSize default
>
> On Mon, Nov 16, 2015 at 8:23 PM, Bert Huijben <[email protected]> wrote:
> >
> > Currently it looks like bodies of requests are not delivered over http/2
> unless I add a Content-Length header to the request.
>
> Do you mean it does not work with the "Transfer-Encoding: chunked"
> header either?
Not following up on this:
http/2 strictly disallows transfer-encoding chunked.
http/2 always uses streams and framing... completely different system, but
solves the same problem as chunking did in http/1.1.
If a content-length header exists, it is transferred... but it isn't used at
the protocol level.
(In most cases it is still used at the application level, but that is a
different story)
Bert