]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC: Update documentation for SSL_get_[rw]poll_descriptor, SSL_net_(read|write)_desired
authorHugo Landau <hlandau@openssl.org>
Wed, 13 Sep 2023 12:46:44 +0000 (13:46 +0100)
committerPauli <pauli@openssl.org>
Wed, 20 Sep 2023 01:20:34 +0000 (11:20 +1000)
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)

doc/man3/SSL_get_rpoll_descriptor.pod

index 5e1879580e82f78822946108fd264fc04c0a1caf..3bdd0a924c646d75c3a695463ca71c3a86edfd25 100644 (file)
@@ -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