diff options
author | beck <> | 2021-10-23 20:42:50 +0000 |
---|---|---|
committer | beck <> | 2021-10-23 20:42:50 +0000 |
commit | 294ec6eff6667e3e978a71ce4219ef96214e4b98 (patch) | |
tree | 29525b524ab0802402e6cb477926f195db081bea /src/lib/libssl/ssl.h | |
parent | c47d838425ca8bf46524f3d2c215287091f3e2aa (diff) | |
download | openbsd-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.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index a6ab4fc2f6..258cde67e4 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.213 2021/10/23 16:29:15 beck Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.214 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 | * |
@@ -513,6 +513,7 @@ int SSL_set_num_tickets(SSL *s, size_t num_tickets); | |||
513 | size_t SSL_get_num_tickets(const SSL *s); | 513 | size_t SSL_get_num_tickets(const SSL *s); |
514 | int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets); | 514 | int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets); |
515 | size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx); | 515 | size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx); |
516 | STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s); | ||
516 | #endif | 517 | #endif |
517 | 518 | ||
518 | #ifndef LIBRESSL_INTERNAL | 519 | #ifndef LIBRESSL_INTERNAL |