summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2021-09-10 14:58:44 +0000
committertb <>2021-09-10 14:58:44 +0000
commit4e543d473714b293166e5d081edd1157d4c00e41 (patch)
treef6f998cb984d56dd6a625d945215ba3b527eee30
parent13d012a9b3925433e1365494474510752cfbe66b (diff)
downloadopenbsd-4e543d473714b293166e5d081edd1157d4c00e41.tar.gz
openbsd-4e543d473714b293166e5d081edd1157d4c00e41.tar.bz2
openbsd-4e543d473714b293166e5d081edd1157d4c00e41.zip
Move SSL_set0_rbio() outside of LIBRESSL_HAS_TLS1_3
ok inoguchi jsing
-rw-r--r--src/lib/libssl/ssl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 7ed69467b6..5ba2b799e4 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.207 2021/09/10 14:55:53 tb Exp $ */ 1/* $OpenBSD: ssl.h,v 1.208 2021/09/10 14:58:44 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 *
@@ -1275,9 +1275,7 @@ int SSL_set_rfd(SSL *s, int fd);
1275int SSL_set_wfd(SSL *s, int fd); 1275int SSL_set_wfd(SSL *s, int fd);
1276void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); 1276void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio);
1277BIO * SSL_get_rbio(const SSL *s); 1277BIO * SSL_get_rbio(const SSL *s);
1278#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL)
1279void SSL_set0_rbio(SSL *s, BIO *rbio); 1278void SSL_set0_rbio(SSL *s, BIO *rbio);
1280#endif
1281BIO * SSL_get_wbio(const SSL *s); 1279BIO * SSL_get_wbio(const SSL *s);
1282int SSL_set_cipher_list(SSL *s, const char *str); 1280int SSL_set_cipher_list(SSL *s, const char *str);
1283#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) 1281#if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL)