Add QUIC to --enable-all

pull/6957/head
Lealem Amedie 2023-11-09 14:44:02 -07:00
parent 1a3f3aa5f0
commit e2bbacd548
2 changed files with 4 additions and 2 deletions

View File

@ -788,6 +788,7 @@ then
test "$enable_session_ticket" = "" && enable_session_ticket=yes
test "$enable_earlydata" = "" && enable_earlydata=yes
test "$enable_ech" = "" && enable_ech=yes
test "$enable_quic" = "" && enable_quic=yes
if test "$ENABLED_32BIT" != "yes"
then

View File

@ -14421,8 +14421,9 @@ int ProcessPeerCerts(WOLFSSL* ssl, byte* input, word32* inOutIdx,
}
}
else if (ret == ASN_PARSE_E || ret == BUFFER_E ||
ret == MEMORY_E) {
WOLFSSL_MSG("Got Peer cert ASN PARSE_E, BUFFER E, MEMORY_E");
ret == MEMORY_E || ret == BAD_FUNC_ARG) {
WOLFSSL_MSG("Got Peer cert ASN_PARSE_E, BUFFER_E, MEMORY_E,"
" BAD_FUNC_ARG");
#if defined(WOLFSSL_EXTRA_ALERTS) || defined(OPENSSL_EXTRA) || \
defined(OPENSSL_EXTRA_X509_SMALL)
DoCertFatalAlert(ssl, ret);