diff options
author | 2018-03-17 15:55:52 +0000 | |
---|---|---|
committer | 2018-03-17 15:55:52 +0000 | |
commit | 1a87ffcc37d89003f2f6d5a55cd93f9dd8621d45 (patch) | |
tree | 2909fa980207786279691825088bad76d760ce7e /lib/libssl/ssl.h | |
parent | Provide SSL_CTX_get_default_passwd_cb{,_userdata}() (diff) | |
download | wireguard-openbsd-1a87ffcc37d89003f2f6d5a55cd93f9dd8621d45.tar.xz wireguard-openbsd-1a87ffcc37d89003f2f6d5a55cd93f9dd8621d45.zip |
Provide SSL_SESSION_get_ticket_lifetime_hint() and
SSL_SESSION_has_ticket()
ok jsing
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 17b9467ae0d..05939f214db 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.151 2018/03/17 15:48:31 tb Exp $ */ +/* $OpenBSD: ssl.h,v 1.152 2018/03/17 15:55:52 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1327,6 +1327,8 @@ const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *ss, unsigned int *len); const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *ss, unsigned int *len); +unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s); +int SSL_SESSION_has_ticket(const SSL_SESSION *s); unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *ss); int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *ses); int SSL_SESSION_print(BIO *fp, const SSL_SESSION *ses); |