Commit 76a268a4 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

PR: 1993

Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de>
Approved by: steve@openssl.org

DTLS cookie resumption and typo fix.
parent 6563b029
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -220,6 +220,8 @@ int dtls1_connect(SSL *s)
			s->init_num=0;
			/* mark client_random uninitialized */
			memset(s->s3->client_random,0,sizeof(s->s3->client_random));
			s->d1->send_cookie = 0;
			s->hit = 0;
			break;

		case SSL3_ST_CW_CLNT_HELLO_A:
+1 −1
Original line number Diff line number Diff line
@@ -732,7 +732,7 @@ start:
	/* Check for timeout */
	if (dtls1_is_timer_expired(s))
		{
		if (dtls1_read_failed(s, -1) > 0);
		if (dtls1_read_failed(s, -1) > 0)
			goto start;
		}