Merge pull request #3433 from dgarske/sniffer_sni

Fix for Sniffer with SSLv3 where SNI is not supported
This commit is contained in:
toddouska
2020-10-28 12:06:37 -07:00
committed by GitHub

View File

@ -3032,7 +3032,8 @@ static int ProcessClientHello(const byte* input, int* sslBytes,
} }
wc_UnLockMutex(&session->context->namedKeysMutex); wc_UnLockMutex(&session->context->namedKeysMutex);
} }
if (ret > 0) { /* SSLv3 does not support the SNI TLS Extension and may return SNI_UNSUPPORTED */
if (ret > 0 || ret == SNI_UNSUPPORTED) {
/* make sure WOLFSSL_SUCCESS is converted to zero error code */ /* make sure WOLFSSL_SUCCESS is converted to zero error code */
ret = 0; ret = 0;
} }