diff options
author | jsing <> | 2022-08-21 19:18:57 +0000 |
---|---|---|
committer | jsing <> | 2022-08-21 19:18:57 +0000 |
commit | 14c1d07ebeba51e7c5d52a7a218214dcd39548d4 (patch) | |
tree | 5540079df24aefeb01b22cc8bd9aa7a7c6cb4021 /src/lib/libssl/ssl.h | |
parent | 241884636e350bc9aa3c9962e626ddcc8e4a566e (diff) | |
download | openbsd-14c1d07ebeba51e7c5d52a7a218214dcd39548d4.tar.gz openbsd-14c1d07ebeba51e7c5d52a7a218214dcd39548d4.tar.bz2 openbsd-14c1d07ebeba51e7c5d52a7a218214dcd39548d4.zip |
Provide and use QUIC specific error reasons.
ok tb@
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 7ce873de3f..359b554ecc 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.224 2022/08/21 17:54:38 jsing Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.225 2022/08/21 19:18:57 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -2164,6 +2164,8 @@ void ERR_load_SSL_strings(void); | |||
2164 | #define SSL_R_X509_LIB 268 | 2164 | #define SSL_R_X509_LIB 268 |
2165 | #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 269 | 2165 | #define SSL_R_X509_VERIFICATION_SETUP_PROBLEMS 269 |
2166 | #define SSL_R_PEER_BEHAVING_BADLY 666 | 2166 | #define SSL_R_PEER_BEHAVING_BADLY 666 |
2167 | #define SSL_R_QUIC_INTERNAL_ERROR 667 | ||
2168 | #define SSL_R_WRONG_ENCRYPTION_LEVEL_RECEIVED 668 | ||
2167 | #define SSL_R_UNKNOWN 999 | 2169 | #define SSL_R_UNKNOWN 999 |
2168 | 2170 | ||
2169 | /* | 2171 | /* |