Don't attempt session resumption if no ticket is present and session
ID length is zero.
This commit is contained in:
parent
90528846e8
commit
257b2bfb6c
@ -618,9 +618,15 @@ int ssl3_client_hello(SSL *s)
|
|||||||
buf=(unsigned char *)s->init_buf->data;
|
buf=(unsigned char *)s->init_buf->data;
|
||||||
if (s->state == SSL3_ST_CW_CLNT_HELLO_A)
|
if (s->state == SSL3_ST_CW_CLNT_HELLO_A)
|
||||||
{
|
{
|
||||||
if ((s->session == NULL) ||
|
SSL_SESSION *sess = s->session;
|
||||||
(s->session->ssl_version != s->version) ||
|
if ((sess == NULL) ||
|
||||||
(s->session->not_resumable))
|
(sess->ssl_version != s->version) ||
|
||||||
|
#ifdef OPENSSL_NO_TLSEXT
|
||||||
|
!sess->session_id_length ||
|
||||||
|
#else
|
||||||
|
(!sess->session_id_length && !sess->tlsext_tick) ||
|
||||||
|
#endif
|
||||||
|
(sess->not_resumable))
|
||||||
{
|
{
|
||||||
if (!ssl_get_new_session(s,0))
|
if (!ssl_get_new_session(s,0))
|
||||||
goto err;
|
goto err;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user