diff options
author | beck <> | 2020-01-22 02:21:05 +0000 |
---|---|---|
committer | beck <> | 2020-01-22 02:21:05 +0000 |
commit | 42995b3308983da3add7404dc736c3fcfaa2b90f (patch) | |
tree | adb83e2e84639be88bf49e54a37ffa221760b86f /src/lib/libssl/tls13_internal.h | |
parent | 33e8d2d1da86ec2fec46397361af862802b89333 (diff) | |
download | openbsd-42995b3308983da3add7404dc736c3fcfaa2b90f.tar.gz openbsd-42995b3308983da3add7404dc736c3fcfaa2b90f.tar.bz2 openbsd-42995b3308983da3add7404dc736c3fcfaa2b90f.zip |
Add minimal support for hello retry request for RFC conformance.
We currently don't support sending a modified clienthello
ok jsing@ tb@
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index 7fee37f5dd..167ed1f254 100644 --- a/src/lib/libssl/tls13_internal.h +++ b/src/lib/libssl/tls13_internal.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_internal.h,v 1.40 2020/01/22 01:02:28 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.41 2020/01/22 02:21:05 beck Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -38,6 +38,7 @@ __BEGIN_HIDDEN_DECLS | |||
38 | #define TLS13_IO_USE_LEGACY -4 | 38 | #define TLS13_IO_USE_LEGACY -4 |
39 | 39 | ||
40 | #define TLS13_ERR_VERIFY_FAILED 16 | 40 | #define TLS13_ERR_VERIFY_FAILED 16 |
41 | #define TLS13_ERR_HRR_FAILED 17 | ||
41 | 42 | ||
42 | typedef void (*tls13_alert_cb)(uint8_t _alert_desc, void *_cb_arg); | 43 | typedef void (*tls13_alert_cb)(uint8_t _alert_desc, void *_cb_arg); |
43 | typedef ssize_t (*tls13_phh_recv_cb)(void *_cb_arg, CBS *cbs); | 44 | typedef ssize_t (*tls13_phh_recv_cb)(void *_cb_arg, CBS *cbs); |