summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_ctrl.pod
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-04-26 09:42:01 +0200
committerTomas Mraz <tomas@openssl.org>2022-05-16 10:45:48 +0200
commit524bac570702a79366b85ff1f66e07d3e002370c (patch)
tree19012c9e964a5594bf8bed6789b3062493bf6619 /doc/man3/BIO_ctrl.pod
parent6646e015a50e5455117c22a27032011689db710f (diff)
Fix BIO_get_ktls_send/recv to return 0 or 1 only
Fixes #18176 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/18178)
Diffstat (limited to 'doc/man3/BIO_ctrl.pod')
-rw-r--r--doc/man3/BIO_ctrl.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man3/BIO_ctrl.pod b/doc/man3/BIO_ctrl.pod
index 2cb2d955a9..eb312bcd0c 100644
--- a/doc/man3/BIO_ctrl.pod
+++ b/doc/man3/BIO_ctrl.pod
@@ -82,9 +82,9 @@ return a size_t type and are functions, BIO_pending() and BIO_wpending() are
macros which call BIO_ctrl().
BIO_get_ktls_send() returns 1 if the BIO is using the Kernel TLS data-path for
-sending. Otherwise, it returns zero. It also returns negative values for failure.
+sending. Otherwise, it returns zero.
BIO_get_ktls_recv() returns 1 if the BIO is using the Kernel TLS data-path for
-receiving. Otherwise, it returns zero. It also returns negative values for failure.
+receiving. Otherwise, it returns zero.
BIO_get_conn_mode() returns the BIO connection mode. BIO_set_conn_mode() sets
the BIO connection mode.
@@ -166,8 +166,8 @@ the case of BIO_seek() on a file BIO for a successful operation.
=head1 HISTORY
-The BIO_get_ktls_send() and BIO_get_ktls_recv() functions were added in
-OpenSSL 3.0.
+The BIO_get_ktls_send() and BIO_get_ktls_recv() macros were added in
+OpenSSL 3.0. They were modified to never return -1 in OpenSSL 3.0.4.
The BIO_get_conn_mode(), BIO_set_conn_mode() and BIO_set_tfo() functions
were added in OpenSSL 3.1.