From: Dr. Stephen Henson Date: Wed, 25 May 2011 12:24:03 +0000 (+0000) Subject: PR: 2505 X-Git-Tag: OpenSSL_0_9_8s~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fa657871ed00659e7665a8b98af5f44c1189043d;p=oweals%2Fopenssl.git PR: 2505 Submitted by: Robin Seggelmann Reviewed by: steve Fix DTLS session resumption timer bug. --- diff --git a/ssl/d1_clnt.c b/ssl/d1_clnt.c index 0aa77ee51d..4001a5a673 100644 --- a/ssl/d1_clnt.c +++ b/ssl/d1_clnt.c @@ -403,7 +403,8 @@ int dtls1_connect(SSL *s) case SSL3_ST_CW_CHANGE_A: case SSL3_ST_CW_CHANGE_B: - dtls1_start_timer(s); + if (!s->hit) + dtls1_start_timer(s); ret=dtls1_send_change_cipher_spec(s, SSL3_ST_CW_CHANGE_A,SSL3_ST_CW_CHANGE_B); if (ret <= 0) goto end; @@ -438,7 +439,8 @@ int dtls1_connect(SSL *s) case SSL3_ST_CW_FINISHED_A: case SSL3_ST_CW_FINISHED_B: - dtls1_start_timer(s); + if (!s->hit) + dtls1_start_timer(s); ret=dtls1_send_finished(s, SSL3_ST_CW_FINISHED_A,SSL3_ST_CW_FINISHED_B, s->method->ssl3_enc->client_finished_label,