diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index d53672dbfe..b699b20501 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.67 2020/04/28 20:37:22 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.68 2020/05/09 15:05:50 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> |
@@ -51,6 +51,7 @@ typedef ssize_t (*tls13_read_cb)(void *_buf, size_t _buflen, void *_cb_arg); | |||
51 | typedef ssize_t (*tls13_write_cb)(const void *_buf, size_t _buflen, | 51 | typedef ssize_t (*tls13_write_cb)(const void *_buf, size_t _buflen, |
52 | void *_cb_arg); | 52 | void *_cb_arg); |
53 | typedef void (*tls13_handshake_message_cb)(void *_cb_arg); | 53 | typedef void (*tls13_handshake_message_cb)(void *_cb_arg); |
54 | typedef int (*tls13_ocsp_status_cb)(void *_cb_arg); | ||
54 | 55 | ||
55 | /* | 56 | /* |
56 | * Buffers. | 57 | * Buffers. |
@@ -233,6 +234,7 @@ struct tls13_ctx { | |||
233 | 234 | ||
234 | tls13_handshake_message_cb handshake_message_sent_cb; | 235 | tls13_handshake_message_cb handshake_message_sent_cb; |
235 | tls13_handshake_message_cb handshake_message_recv_cb; | 236 | tls13_handshake_message_cb handshake_message_recv_cb; |
237 | tls13_ocsp_status_cb ocsp_status_recv_cb; | ||
236 | }; | 238 | }; |
237 | #ifndef TLS13_PHH_LIMIT_TIME | 239 | #ifndef TLS13_PHH_LIMIT_TIME |
238 | #define TLS13_PHH_LIMIT_TIME 3600 | 240 | #define TLS13_PHH_LIMIT_TIME 3600 |