Home
last modified time | relevance | path

Searched refs:SSL_pending (Results 1 – 24 of 24) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_pending.pod5 SSL_pending, SSL_has_pending - check for readable bytes buffered in an
12 int SSL_pending(const SSL *ssl);
21 SSL_pending() returns the number of bytes which have been processed, buffered
29 they are needed. As these bytes are still in an unprocessed state SSL_pending()
31 the underlying BIO (because OpenSSL has already read them) and for SSL_pending()
47 SSL_pending() returns the number of buffered and processed application data
DSSL_CTX_set_read_ahead.pod41 B<read_ahead> can impact the behaviour of the SSL_pending() function
42 (see L<SSL_pending(3)>).
63 L<ssl(7)>, L<SSL_pending(3)>
DSSL_CTX_set_split_send_fragment.pod98 connection. Setting B<read_ahead> can impact the behaviour of the SSL_pending()
99 function (see L<SSL_pending(3)>).
168 L<SSL_CTX_set_read_ahead(3)>, L<SSL_pending(3)>
DSSL_read.pod91 L<SSL_pending(3)> can be used to find out whether there
135 L<SSL_pending(3)>,
/third_party/libwebsockets/lib/tls/mbedtls/
Dmbedtls-ssl.c139 if (SSL_pending(wsi->tls.ssl)) { in lws_ssl_capable_read()
159 return SSL_pending(wsi->tls.ssl); in lws_ssl_pending()
/third_party/nghttp2/src/
Dshrpx_rate_limit.cc112 (SSL_pending(conn_->tls.ssl) == 0 && conn_->tls.rbuf.rleft() == 0 && in handle_tls_pending_read()
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-ssl.c314 if (SSL_pending(wsi->tls.ssl)) { in lws_ssl_capable_read()
334 return SSL_pending(wsi->tls.ssl); in lws_ssl_pending()
Dopenssl-server.c716 if (SSL_pending(wsi->tls.ssl) &&
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
Dio_openssl.c261 return SSL_pending(session->io_context) > 0 ? SPDY_YES : SPDY_NO; in SPDYF_openssl_is_pending()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c622 int SSL_pending(const SSL *ssl) in SSL_pending() function
642 if (SSL_pending(ssl)) in SSL_has_pending()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h481 int SSL_pending(const SSL *ssl);
/third_party/openssl/test/
Ddtlstest.c532 if (!TEST_int_eq(SSL_pending(cssl), (int)sizeof(msg)) in test_swap_app_data()
Dsslapitest.c7358 if (!TEST_int_eq(SSL_pending(clientssl), 0) in test_ssl_pending()
7360 || !TEST_int_eq(SSL_pending(serverssl), 0) in test_ssl_pending()
7366 || !TEST_int_eq(SSL_pending(clientssl), (int)(written - readbytes)) in test_ssl_pending()
/third_party/openssl/ssl/
Dbio_ssl.c317 ret = SSL_pending(ssl); in ssl_ctrl()
Dssl_lib.c1532 int SSL_pending(const SSL *s) in SSL_pending() function
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs487 pub fn SSL_pending(ssl: *const SSL) -> c_int; in SSL_pending() function
/third_party/openssl/util/
Dlibssl.num281 SSL_pending 282 3_0_0 EXIST::FUNCTION:
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs2644 #[corresponds(SSL_pending)]
2646 unsafe { ffi::SSL_pending(self.as_ptr()) as usize } in pending()
/third_party/openssl/doc/
Dbuild.info2522 DEPEND[html/man3/SSL_pending.html]=man3/SSL_pending.pod
2523 GENERATE[html/man3/SSL_pending.html]=man3/SSL_pending.pod
2524 DEPEND[man/man3/SSL_pending.3]=man3/SSL_pending.pod
2525 GENERATE[man/man3/SSL_pending.3]=man3/SSL_pending.pod
3368 html/man3/SSL_pending.html \
3964 man/man3/SSL_pending.3 \
/third_party/cups/
Dohos-add-openssl.patch908 + return ((size_t)SSL_pending(http->tls));
/third_party/openssl/ohos_lite/include/openssl/
Dssl.h1536 __owur int SSL_pending(const SSL *s);
/third_party/python/Modules/
D_ssl.c2408 count = SSL_pending(self->ssl); in _ssl__SSLSocket_pending_impl()
/third_party/openssl/include/openssl/
Dssl.h.in1566 __owur int SSL_pending(const SSL *s);
/third_party/openssl/
DCHANGES.md287 * Fixed SSL_pending() and SSL_has_pending() with DTLS which were failing to
14618 * Fix ssl3_pending() (ssl/s3_lib.c) to prevent SSL_pending() from
18464 it should have checked SSL_pending() first.