Home
last modified time | relevance | path

Searched refs:ssl_pending (Results 1 – 4 of 4) sorted by relevance

/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/
Dssl_types.h279 int (*ssl_pending)(const SSL *ssl); member
/third_party/openssl/apps/
Ds_client.c922 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending; in s_client_main() local
2816 ssl_pending = read_ssl && SSL_has_pending(con); in s_client_main()
2818 if (!ssl_pending) { in s_client_main()
2888 if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) { in s_client_main()
2956 else if (!ssl_pending && write_tty) in s_client_main()
2958 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds)) in s_client_main()
2978 } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) { in s_client_main()
/third_party/openssl/ssl/
Dssl_local.h464 size_t (*ssl_pending) (const SSL *s); member
Dssl_lib.c1494 size_t pending = s->method->ssl_pending(s); in SSL_pending()