How to determine the content-data length if the header is not sent and instead your receive Transfer-Encoding: chunked header..

I heard there is a way to do it, but i failed to find it! Best, Moe

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

With chunked encoding there will be no Content-Length header. So after you've read the headers and the pair of CRLFs that mark the end of the headers, you're ready to read the first chunk. Each chunk payload is preceded by its own mini-header - the length in hex followed by CRLF. And there's another CRLF after the payload, before the next chunk's mini-header. A chunk can also be followed by some optional trailers. The end of the message is indicated by a zero-length chunk.

You can find the definitive details in the HTTP RFC, RFC2616.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.