> From: owner-openssl-us...@openssl.org On Behalf Of Lutz Jaenicke
> Sent: Tuesday, 03 November, 2009 14:13
> ----- Forwarded message from sandeep.kuma...@wipro.com -----
> Subject: SSL_write returned SSL_ERROR_SSL
> Date: Tue, 3 Nov 2009 19:25:03 +0530
> Thread-Topic: SSL_write returned SSL_ERROR_SSL
> Thread-Index: AcpcjT4Rk9sPCTZ0QEaWqLVTn71DBQ==
> From: sandeep.kuma...@wipro.com
> To: r...@openssl.org
> 
> I am facing some weird problem in SSL_write(). Most of the 
> times it returned with "SSL_ERROR_SSL".
> Can anyone explain what is this error and how can we fix this.
> I am using 0.9.8g openssl version.
> 
After (any) SSL_* returns SSL_ERROR_SSL, to get more detailed 
information about the error(s) either:
- call ERR_get_error (note different name) to get an unsigned long, 
then ERR_error_string (and/or other ERR_*) routines to decode it, 
and display, and repeat until ERR_get_error returns zero; or
- call ERR_print_errors_fp (stderr or other FILE*) which 
does the above for you in a default format.



______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to