summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorbeck <>2021-10-23 20:42:50 +0000
committerbeck <>2021-10-23 20:42:50 +0000
commit294ec6eff6667e3e978a71ce4219ef96214e4b98 (patch)
tree29525b524ab0802402e6cb477926f195db081bea /src/lib/libssl/ssl_locl.h
parentc47d838425ca8bf46524f3d2c215287091f3e2aa (diff)
downloadopenbsd-294ec6eff6667e3e978a71ce4219ef96214e4b98.tar.gz
openbsd-294ec6eff6667e3e978a71ce4219ef96214e4b98.tar.bz2
openbsd-294ec6eff6667e3e978a71ce4219ef96214e4b98.zip
Add SSL_get0_verified_chain - needed by some new stuff
symbol will be exposed with tb@'s forthcoming bump ok tb@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 579899f464..aa6233e617 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.365 2021/10/23 16:29:15 beck Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.366 2021/10/23 20:42:50 beck 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 *
@@ -1031,6 +1031,7 @@ typedef struct ssl_internal_st {
1031 int empty_record_count; 1031 int empty_record_count;
1032 1032
1033 size_t num_tickets; /* Unused, for OpenSSL compatibility */ 1033 size_t num_tickets; /* Unused, for OpenSSL compatibility */
1034 STACK_OF(X509) *verified_chain;
1034} SSL_INTERNAL; 1035} SSL_INTERNAL;
1035 1036
1036struct ssl_st { 1037struct ssl_st {