RE: Transfer Encoding : Chunked

2006-10-04 Thread André Ziermann
Hi, The transfer encoding chunked header tells you that your server's response will be sent in more than one little pieces. Sometimes the server does so, sometimes not. Depends on the response and on whether the server knows the response's length in the very moment it starts sending it. So you s

RE: Transfer Encoding : Chunked

2006-10-03 Thread David Schwartz
> I am implementing an HTTP 1.1 client in C++ using openssl for SSL. > > Sometimes the Http response I get back says that the > Transfer Encoding : chunked > > I really donot do anything extra here in this case. As usual I do a > SSL_Pending to see if any data is pending in the SSL buffer and if