SSL_want.pod 3.0 KB
Newer Older
1 2 3 4
=pod

=head1 NAME

M
Matt Caswell 已提交
5 6 7
SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write, SSL_want_x509_lookup,
SSL_want_async, SSL_want_async_job - obtain state information TLS/SSL I/O
operation
8 9 10 11 12

=head1 SYNOPSIS

 #include <openssl/ssl.h>

13 14 15 16 17
 int SSL_want(const SSL *ssl);
 int SSL_want_nothing(const SSL *ssl);
 int SSL_want_read(const SSL *ssl);
 int SSL_want_write(const SSL *ssl);
 int SSL_want_x509_lookup(const SSL *ssl);
M
Matt Caswell 已提交
18 19
 int SSL_want_async(const SSL *ssl);
 int SSL_want_async_job(const SSL *ssl);
20 21 22 23 24 25 26 27 28 29 30

=head1 DESCRIPTION

SSL_want() returns state information for the SSL object B<ssl>.

The other SSL_want_*() calls are shortcuts for the possible states returned
by SSL_want().

=head1 NOTES

SSL_want() examines the internal state information of the SSL object. Its
R
Rich Salz 已提交
31 32
return values are similar to that of L<SSL_get_error(3)>.
Unlike L<SSL_get_error(3)>, which also evaluates the
33 34 35
error queue, the results are obtained by examining an internal state flag
only. The information must therefore only be used for normal operation under
non-blocking I/O. Error conditions are not handled and must be treated
R
Rich Salz 已提交
36
using L<SSL_get_error(3)>.
37 38

The result returned by SSL_want() should always be consistent with
R
Rich Salz 已提交
39
the result of L<SSL_get_error(3)>.
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

=head1 RETURN VALUES

The following return values can currently occur for SSL_want():

=over 4

=item SSL_NOTHING

There is no data to be written or to be read.

=item SSL_WRITING

There are data in the SSL buffer that must be written to the underlying
B<BIO> layer in order to complete the actual SSL_*() operation.
R
Rich Salz 已提交
55
A call to L<SSL_get_error(3)> should return
56 57 58 59 60 61
SSL_ERROR_WANT_WRITE.

=item SSL_READING

More data must be read from the underlying B<BIO> layer in order to
complete the actual SSL_*() operation.
R
Rich Salz 已提交
62
A call to L<SSL_get_error(3)> should return
63 64 65 66 67 68
SSL_ERROR_WANT_READ.

=item SSL_X509_LOOKUP

The operation did not complete because an application callback set by
SSL_CTX_set_client_cert_cb() has asked to be called again.
R
Rich Salz 已提交
69
A call to L<SSL_get_error(3)> should return
70 71
SSL_ERROR_WANT_X509_LOOKUP.

M
Matt Caswell 已提交
72 73 74 75 76 77 78 79 80 81 82 83
=item SSL_ASYNC_PAUSED

An asynchronous operation partially completed and was then paused. See
L<SSL_get_all_async_fds(3)>. A call to L<SSL_get_error(3)> should return
SSL_ERROR_WANT_ASYNC.

=item SSL_ASYNC_NO_JOBS

The asynchronous job could not be started because there were no async jobs
available in the pool (see ASYNC_init_thread(3)). A call to L<SSL_get_error(3)>
should return SSL_ERROR_WANT_ASYNC_JOB.

84 85
=back

M
Matt Caswell 已提交
86 87 88
SSL_want_nothing(), SSL_want_read(), SSL_want_write(), SSL_want_x509_lookup(),
SSL_want_async() and SSL_want_async_job() return 1, when the corresponding
condition is true or 0 otherwise.
89 90 91

=head1 SEE ALSO

R
Rich Salz 已提交
92
L<ssl(3)>, L<err(3)>, L<SSL_get_error(3)>
93 94

=cut
R
Rich Salz 已提交
95 96 97 98 99 100 101 102 103 104 105

=head1 COPYRIGHT

Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut