In ssl_lib.c
the following code exists in SLL_clear()
------------------------------------------------------------------------------------------------
#if 0 /* Disabled since version 1.10 of this file (early return not
       * needed because SSL_clear is not called when doing renegotiation) */
        /* This is set if we are doing dynamic renegotiation so keep
         * the old cipher.  It is sort of a SSL_clear_lite :-) */
        if (s->new_session) return(1);
#else
        if (s->new_session)
                {
                SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR);
                return 0;
                }
#endif
-------------------------------------------------------------------------------------------------

I'd like to know if this is really an INTERNAL_ERROR ?
What would cause this to occur?

I see the follwing from time to time in the log file:
error:140A4044:SSL routines:SSL_clear:internal error

Thanks in advance,
Tony
-- 
View this message in context: 
http://www.nabble.com/Is-this-really-an-internal-error---tf3402455.html#a9475497
Sent from the OpenSSL - Dev mailing list archive at Nabble.com.

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

Reply via email to