I am using Winsock. I send a request to a server, and the HTTP Headers contain "Transfer-Encoding: chunked". If they contain "Content-Length: xxxxx", it's obvious - but how do I parse the data into a buffer using recv()
if it's chunked?
Some pseudo-code or explanation would be greatly appreciated!
Assuming you have a socket. All HTTP headers has been received (from this socket). Here is simplified algorithm to receive chunked content from the socket.
This code is just for clarify how to parse chunked content from the socket.