summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-09-13 13:46:44 +0100
committerPauli <pauli@openssl.org>2023-09-20 11:20:34 +1000
commitb509d0bd25ca457764aaa5e7dcb797dc6a17a98f (patch)
tree5ac0fb904d41a9f6f7b41985b6ce6d468042193b /doc
parentf26244336f2a1b0d3040fe1db5d1024ec40e0b8b (diff)
QUIC: Update documentation for SSL_get_[rw]poll_descriptor, SSL_net_(read|write)_desired
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21979)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/SSL_get_rpoll_descriptor.pod9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/man3/SSL_get_rpoll_descriptor.pod b/doc/man3/SSL_get_rpoll_descriptor.pod
index 5e1879580e..3bdd0a924c 100644
--- a/doc/man3/SSL_get_rpoll_descriptor.pod
+++ b/doc/man3/SSL_get_rpoll_descriptor.pod
@@ -66,7 +66,14 @@ may change in response to any call to the SSL object other than
SSL_net_read_desired(), SSL_net_write_desired(), SSL_get_rpoll_descriptor(),
SSL_get_wpoll_descriptor() and SSL_get_event_timeout().
-These functions are not supported on non-QUIC SSL objects.
+On non-QUIC SSL objects, calls to SSL_get_rpoll_descriptor() and
+SSL_get_wpoll_descriptor() function the same as calls to
+BIO_get_rpoll_descriptor() and BIO_get_wpoll_descriptor() on the respective read
+and write BIOs configured on the SSL object.
+
+On non-QUIC SSL objects, calls to SSL_net_read_desired() and
+SSL_net_write_desired() function identically to calls to SSL_want_read() and
+SSL_want_write() respectively.
=head1 RETURN VALUES