summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r--src/lib/libssl/ssl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 46f24b2ea9..b8cfb771b6 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.196 2021/06/30 18:07:50 jsing Exp $ */ 1/* $OpenBSD: ssl.h,v 1.197 2021/09/08 12:32:07 tb 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 *
@@ -1256,6 +1256,9 @@ int SSL_set_rfd(SSL *s, int fd);
1256int SSL_set_wfd(SSL *s, int fd); 1256int SSL_set_wfd(SSL *s, int fd);
1257void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); 1257void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio);
1258BIO * SSL_get_rbio(const SSL *s); 1258BIO * SSL_get_rbio(const SSL *s);
1259#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL)
1260void SSL_set0_rbio(SSL *s, BIO *rbio);
1261#endif
1259BIO * SSL_get_wbio(const SSL *s); 1262BIO * SSL_get_wbio(const SSL *s);
1260int SSL_set_cipher_list(SSL *s, const char *str); 1263int SSL_set_cipher_list(SSL *s, const char *str);
1261#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) 1264#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL)