diff options
author | 2020-05-16 14:42:35 +0000 | |
---|---|---|
committer | 2020-05-16 14:42:35 +0000 | |
commit | 3290fa225a472d5fe4404192e92d39c2026e1e49 (patch) | |
tree | 45bc584136b24c0c3c457833f2a25ac8d08ec1bc /lib/libssl/tls13_internal.h | |
parent | Do not redraw or update mode if nothing has changed. (diff) | |
download | wireguard-openbsd-3290fa225a472d5fe4404192e92d39c2026e1e49.tar.xz wireguard-openbsd-3290fa225a472d5fe4404192e92d39c2026e1e49.zip |
Add TLS13_ERR_NO_CERTIFICATE.
This was missed in previous tls13_server.c commit.
ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/tls13_internal.h')
-rw-r--r-- | lib/libssl/tls13_internal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libssl/tls13_internal.h b/lib/libssl/tls13_internal.h index 5ea09db8a0d..98cbf4c8a7a 100644 --- a/lib/libssl/tls13_internal.h +++ b/lib/libssl/tls13_internal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_internal.h,v 1.79 2020/05/11 18:08:11 jsing Exp $ */ +/* $OpenBSD: tls13_internal.h,v 1.80 2020/05/16 14:42:35 jsing Exp $ */ /* * Copyright (c) 2018 Bob Beck <beck@openbsd.org> * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> @@ -45,7 +45,8 @@ __BEGIN_HIDDEN_DECLS #define TLS13_ERR_HRR_FAILED 17 #define TLS13_ERR_TRAILING_DATA 18 #define TLS13_ERR_NO_SHARED_CIPHER 19 -#define TLS13_ERR_NO_PEER_CERTIFICATE 20 +#define TLS13_ERR_NO_CERTIFICATE 20 +#define TLS13_ERR_NO_PEER_CERTIFICATE 21 #define TLS13_ALERT_LEVEL_WARNING 1 #define TLS13_ALERT_LEVEL_FATAL 2 |