mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-29 18:27:29 +02:00
Fix TLS 1.2 and below ServerHello TLSX_Parse to pass in message type
This commit is contained in:
@ -17495,8 +17495,8 @@ exit_dpk:
|
||||
if ((i - begin) + totalExtSz > helloSz)
|
||||
return BUFFER_ERROR;
|
||||
|
||||
if ((ret = TLSX_Parse(ssl, (byte *) input + i,
|
||||
totalExtSz, 0, NULL)))
|
||||
if ((ret = TLSX_Parse(ssl, (byte *) input + i, totalExtSz,
|
||||
server_hello, NULL)))
|
||||
return ret;
|
||||
|
||||
i += totalExtSz;
|
||||
|
Reference in New Issue
Block a user