summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl.h
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2018-02-14 17:08:44 +0000
committerjsing <jsing@openbsd.org>2018-02-14 17:08:44 +0000
commit540ad3effb3e280cbec61900c7b724671ecc1ed2 (patch)
tree7695d84e2e9969e89dd438f26a89a7fc3ad20ec6 /lib/libssl/ssl.h
parentProvide X509_STORE_CTX_get0_{cert,untrusted}() and (diff)
downloadwireguard-openbsd-540ad3effb3e280cbec61900c7b724671ecc1ed2.tar.xz
wireguard-openbsd-540ad3effb3e280cbec61900c7b724671ecc1ed2.zip
Provide SSL_CTX_up_ref().
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r--lib/libssl/ssl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h
index 7768f0a80f9..51b8fdb3cca 100644
--- a/lib/libssl/ssl.h
+++ b/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.135 2018/02/14 16:16:10 jsing Exp $ */
+/* $OpenBSD: ssl.h,v 1.136 2018/02/14 17:08:44 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -1208,6 +1208,7 @@ void BIO_ssl_shutdown(BIO *ssl_bio);
int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str);
SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);
void SSL_CTX_free(SSL_CTX *);
+int SSL_CTX_up_ref(SSL_CTX *ctx);
long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
long SSL_CTX_get_timeout(const SSL_CTX *ctx);
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *);