diff options
author | Matt Caswell <matt@openssl.org> | 2016-05-16 23:50:12 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-05-17 15:21:06 +0200 |
commit | c0e32b16099e346c3289932a6494c5fc902429d1 (patch) | |
tree | 71ea7b0bf7264959642b0a8b6d2955afd68693ab /doc | |
parent | test/evp_test.c: exercise in-place encryption. (diff) | |
download | openssl-c0e32b16099e346c3289932a6494c5fc902429d1.tar.xz openssl-c0e32b16099e346c3289932a6494c5fc902429d1.zip |
Correct documentation error
SSL_get_async_wait_fd() was replaced by SSL_get_all_async_fds() and
SSL_get_changed_async_fds().
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ssl/SSL_get_error.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ssl/SSL_get_error.pod b/doc/ssl/SSL_get_error.pod index dd7ac3c690..316e6a76e6 100644 --- a/doc/ssl/SSL_get_error.pod +++ b/doc/ssl/SSL_get_error.pod @@ -95,9 +95,9 @@ using L<SSL_CTX_set_mode(3)> or L<SSL_set_mode(3)> and an asynchronous capable engine is being used. An application can determine whether the engine has completed its processing using select() or poll() on the asynchronous wait file descriptor. This file descriptor is available by calling -L<SSL_get_async_wait_fd(3)>. The TLS/SSL I/O function should be called again -later. The function B<must> be called from the same thread that the original -call was made from. +L<SSL_get_all_async_fds(3)> or L<SSL_get_changed_async_fds(3)>. The TLS/SSL I/O +function should be called again later. The function B<must> be called from the +same thread that the original call was made from. =item SSL_ERROR_WANT_ASYNC_JOB |