summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl.h
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2019-01-22 01:12:18 +0000
committertb <tb@openbsd.org>2019-01-22 01:12:18 +0000
commit6e429577b5f96607419b128214eb56c32117bb45 (patch)
tree10c97e665b0111b65ceab642755e074acd80ef3c /lib/libssl/ssl.h
parentAdd missing symbols from the EC_KEY_METHOD port. (diff)
downloadwireguard-openbsd-6e429577b5f96607419b128214eb56c32117bb45.tar.xz
wireguard-openbsd-6e429577b5f96607419b128214eb56c32117bb45.zip
Provide SSL_get_client_ciphers().
Part of OpenSSL 1.1 API, pre-licence change. ok jsing
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 ba5241850fe..d440e0ccef7 100644
--- a/lib/libssl/ssl.h
+++ b/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.162 2018/11/11 06:58:14 tb Exp $ */
+/* $OpenBSD: ssl.h,v 1.163 2019/01/22 01:12:18 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -1437,6 +1437,7 @@ const SSL_METHOD *DTLSv1_server_method(void); /* DTLSv1.0 */
const SSL_METHOD *DTLSv1_client_method(void); /* DTLSv1.0 */
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s);
+STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s);
int SSL_do_handshake(SSL *s);
int SSL_renegotiate(SSL *s);