1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Merge pull request #10197 from gilles-peskine-arm/ssl_helpers-split_perform_handshake-dev

Break down mbedtls_test_ssl_perform_handshake
This commit is contained in:
Manuel Pégourié-Gonnard
2025-06-30 09:39:29 +00:00
committed by GitHub
9 changed files with 1461 additions and 1321 deletions

View File

@ -869,7 +869,7 @@ static int ssl_parse_alpn_ext(mbedtls_ssl_context *ssl,
const unsigned char *buf, size_t len)
{
size_t list_len, name_len;
const char **p;
const char *const *p;
/* If we didn't send it, the server shouldn't send it */
if (ssl->conf->alpn_list == NULL) {