mirror of https://github.com/wolfSSL/wolfssl.git
Add QUIC to --enable-all
parent
1a3f3aa5f0
commit
e2bbacd548
|
@ -788,6 +788,7 @@ then
|
||||||
test "$enable_session_ticket" = "" && enable_session_ticket=yes
|
test "$enable_session_ticket" = "" && enable_session_ticket=yes
|
||||||
test "$enable_earlydata" = "" && enable_earlydata=yes
|
test "$enable_earlydata" = "" && enable_earlydata=yes
|
||||||
test "$enable_ech" = "" && enable_ech=yes
|
test "$enable_ech" = "" && enable_ech=yes
|
||||||
|
test "$enable_quic" = "" && enable_quic=yes
|
||||||
|
|
||||||
if test "$ENABLED_32BIT" != "yes"
|
if test "$ENABLED_32BIT" != "yes"
|
||||||
then
|
then
|
||||||
|
|
|
@ -14421,8 +14421,9 @@ int ProcessPeerCerts(WOLFSSL* ssl, byte* input, word32* inOutIdx,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (ret == ASN_PARSE_E || ret == BUFFER_E ||
|
else if (ret == ASN_PARSE_E || ret == BUFFER_E ||
|
||||||
ret == MEMORY_E) {
|
ret == MEMORY_E || ret == BAD_FUNC_ARG) {
|
||||||
WOLFSSL_MSG("Got Peer cert ASN PARSE_E, BUFFER E, MEMORY_E");
|
WOLFSSL_MSG("Got Peer cert ASN_PARSE_E, BUFFER_E, MEMORY_E,"
|
||||||
|
" BAD_FUNC_ARG");
|
||||||
#if defined(WOLFSSL_EXTRA_ALERTS) || defined(OPENSSL_EXTRA) || \
|
#if defined(WOLFSSL_EXTRA_ALERTS) || defined(OPENSSL_EXTRA) || \
|
||||||
defined(OPENSSL_EXTRA_X509_SMALL)
|
defined(OPENSSL_EXTRA_X509_SMALL)
|
||||||
DoCertFatalAlert(ssl, ret);
|
DoCertFatalAlert(ssl, ret);
|
||||||
|
|
Loading…
Reference in New Issue