diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-06-06 17:59:11 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-07-17 00:18:05 +0200 |
commit | bac3f4da5579887d6e203020e83298676cc982ba (patch) | |
tree | 3fceacbf534c9b28ee4b339bcca60529bc806736 /ssl/ssl_err.c | |
parent | QUIC QSM: Get rid of recv_fin_retired in favour of recv_state (diff) | |
download | openssl-bac3f4da5579887d6e203020e83298676cc982ba.tar.xz openssl-bac3f4da5579887d6e203020e83298676cc982ba.zip |
make update
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21135)
Diffstat (limited to 'ssl/ssl_err.c')
-rw-r--r-- | ssl/ssl_err.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/ssl_err.c b/ssl/ssl_err.c index e2e2b65e0d..403ef59bc1 100644 --- a/ssl/ssl_err.c +++ b/ssl/ssl_err.c @@ -459,6 +459,10 @@ static const ERR_STRING_DATA SSL_str_reasons[] = { {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SSL_SESSION_VERSION_MISMATCH), "ssl session version mismatch"}, {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_STILL_IN_INIT), "still in init"}, + {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_STREAM_FINISHED), "stream finished"}, + {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_STREAM_RECV_ONLY), "stream recv only"}, + {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_STREAM_RESET), "stream reset"}, + {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_STREAM_SEND_ONLY), "stream send only"}, {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_TLSV13_ALERT_CERTIFICATE_REQUIRED), "tlsv13 alert certificate required"}, {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_TLSV13_ALERT_MISSING_EXTENSION), |