From f885d3bba2ffa75097b43e1da8eba699c74314e0 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Fri, 3 May 2019 12:47:49 +0100 Subject: [PATCH] Improve structure of client-side CID extension parsing Group configuring CID values together. --- library/ssl_cli.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/ssl_cli.c b/library/ssl_cli.c index 193d4415a..3bed557e1 100644 --- a/library/ssl_cli.c +++ b/library/ssl_cli.c @@ -1289,14 +1289,13 @@ static int ssl_parse_cid_ext( mbedtls_ssl_context *ssl, return( MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO ); } + ssl->handshake->cid_in_use = MBEDTLS_SSL_CID_ENABLED; ssl->handshake->peer_cid_len = (uint8_t) peer_cid_len; memcpy( ssl->handshake->peer_cid, buf, peer_cid_len ); MBEDTLS_SSL_DEBUG_MSG( 3, ( "Use of CID extension negotiated" ) ); MBEDTLS_SSL_DEBUG_BUF( 3, "Server CID", buf, peer_cid_len ); - ssl->handshake->cid_in_use = MBEDTLS_SSL_CID_ENABLED; - return( 0 ); } #endif /* MBEDTLS_SSL_CID */