> I want to reduce the reading the response time, so that the
> performance will get improve.
> I want to read all the bytes at a time.
> SSL_read API is taking much time to read all the bytes of the response
> from the server.
> First time it is going to read 112 bytes, then 1300 bytes,1460 
> bytes...etc.
> Instead of this reading the bytes in chunks in while loop, i want to
> read all the bytes at a time.
> Could you please suggest me any other API to read all the bytes at a time.
> Please send me any example code of this scenario where i can read  all
> the bytes at a time.

SSL_read is giving you as many bytes as it has. The problem is not in the 
SSL_read but either in the sending side or the network between them. You can 
confirm this with a tool like 'tcpdump'.

DS


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to