diff options
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 1a0403c72b..a6ab4fc2f6 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.212 2021/10/23 15:30:44 beck Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.213 2021/10/23 16:29:15 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 | * |
@@ -509,6 +509,10 @@ typedef void (*SSL_CTX_keylog_cb_func)(const SSL *ssl, const char *line); | |||
509 | #if defined(LIBRESSL_NEW_API) | 509 | #if defined(LIBRESSL_NEW_API) |
510 | void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb); | 510 | void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb); |
511 | SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx); | 511 | SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx); |
512 | int SSL_set_num_tickets(SSL *s, size_t num_tickets); | ||
513 | size_t SSL_get_num_tickets(const SSL *s); | ||
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); | ||
512 | #endif | 516 | #endif |
513 | 517 | ||
514 | #ifndef LIBRESSL_INTERNAL | 518 | #ifndef LIBRESSL_INTERNAL |