RE: Reading Transfer-Encoding: chunked data

2010-09-16 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Raj > Sent: Wednesday, 15 September, 2010 09:15 > Can anybody tell me how to read the chunked data using Open SSL API, This is really an HTTP question, not an SSL question. You are just using SSL as transport, and would face

Reading Transfer-Encoding: chunked data

2010-09-15 Thread Raj
Can anybody tell me how to read the chunked data using Open SSL API, I am writing a Man In The Middle application which intercepts the browser request and sends own request to the server , read the information from the server and puts it back to the browser. Now I am some what blocked in point

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

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

AW: Transfer Encoding : Chunked

2006-10-03 Thread Sascha Kiefer
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 not >finish reading

Transfer Encoding : Chunked

2006-10-03 Thread Vinu Thomas
Hi All, 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 not