From 55a62758cd15b69f401e838bf3be390599af37a5 Mon Sep 17 00:00:00 2001 From: beck <> Date: Sat, 23 Oct 2021 16:29:15 +0000 Subject: Add new OpenSSL API SSL_CTX_set_num_tickets and friends. Since we don't support session tickets in LibreSSL at the moment these functions currently do not have any effect. Again, symbols will appear with tb@'s reptar sized bump.. ok tb@ --- src/lib/libssl/ssl_locl.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib/libssl/ssl_locl.h') diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index ea1ee084a0..579899f464 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.364 2021/10/23 15:02:27 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.365 2021/10/23 16:29:15 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -849,6 +849,7 @@ typedef struct ssl_ctx_internal_st { size_t tlsext_supportedgroups_length; uint16_t *tlsext_supportedgroups; /* our list */ SSL_CTX_keylog_cb_func keylog_callback; /* Unused. For OpenSSL compatibility. */ + size_t num_tickets; /* Unused, for OpenSSL compatibility */ } SSL_CTX_INTERNAL; struct ssl_ctx_st { @@ -1028,6 +1029,8 @@ typedef struct ssl_internal_st { int mac_packet; int empty_record_count; + + size_t num_tickets; /* Unused, for OpenSSL compatibility */ } SSL_INTERNAL; struct ssl_st { -- cgit v1.2.3-55-g6feb