diff options
author | tb <> | 2021-09-10 14:58:44 +0000 |
---|---|---|
committer | tb <> | 2021-09-10 14:58:44 +0000 |
commit | 4e543d473714b293166e5d081edd1157d4c00e41 (patch) | |
tree | f6f998cb984d56dd6a625d945215ba3b527eee30 | |
parent | 13d012a9b3925433e1365494474510752cfbe66b (diff) | |
download | openbsd-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.h | 4 |
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); | |||
1275 | int SSL_set_wfd(SSL *s, int fd); | 1275 | int SSL_set_wfd(SSL *s, int fd); |
1276 | void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); | 1276 | void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); |
1277 | BIO * SSL_get_rbio(const SSL *s); | 1277 | BIO * SSL_get_rbio(const SSL *s); |
1278 | #if defined(LIBRESSL_HAS_TLS1_3) || defined(LIBRESSL_INTERNAL) | ||
1279 | void SSL_set0_rbio(SSL *s, BIO *rbio); | 1278 | void SSL_set0_rbio(SSL *s, BIO *rbio); |
1280 | #endif | ||
1281 | BIO * SSL_get_wbio(const SSL *s); | 1279 | BIO * SSL_get_wbio(const SSL *s); |
1282 | int SSL_set_cipher_list(SSL *s, const char *str); | 1280 | int 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) |