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
commitdf7c39071574d0006c0a7c83316d63c62f850267 (patch)
tree29525b524ab0802402e6cb477926f195db081bea /src/lib/libssl/ssl_locl.h
parentc94ab0a63c0ba4be1075d8ab194487b8cd43ab66 (diff)
downloadopenbsd-df7c39071574d0006c0a7c83316d63c62f850267.tar.gz
openbsd-df7c39071574d0006c0a7c83316d63c62f850267.tar.bz2
openbsd-df7c39071574d0006c0a7c83316d63c62f850267.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 {