SSL_pending.pod 919 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
=pod

=head1 NAME

SSL_pending - obtain number of readable bytes buffered in an SSL object

=head1 SYNOPSIS

 #include <openssl/ssl.h>

11
 int SSL_pending(const SSL *ssl);
12 13 14 15 16 17 18 19 20 21

=head1 DESCRIPTION

SSL_pending() returns the number of bytes which are available inside
B<ssl> for immediate read.

=head1 NOTES

Data are received in blocks from the peer. Therefore data can be buffered
inside B<ssl> and are ready for immediate retrieval with
R
Rich Salz 已提交
22
L<SSL_read(3)>.
23 24 25 26 27

=head1 RETURN VALUES

The number of bytes pending is returned.

B
Bodo Möller 已提交
28 29 30 31
=head1 BUGS

SSL_pending() takes into account only bytes from the TLS/SSL record
that is currently being processed (if any).  If the B<SSL> object's
32
I<read_ahead> flag is set (see
R
Rich Salz 已提交
33
L<SSL_CTX_set_read_ahead(3)>), additional protocol
34
bytes may have been read containing more TLS/SSL records; these are ignored by
B
Bodo Möller 已提交
35 36 37 38
SSL_pending().

=head1 SEE ALSO

R
Rich Salz 已提交
39 40
L<SSL_read(3)>,
L<SSL_CTX_set_read_ahead(3)>, L<ssl(3)>
41 42

=cut