Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/apps/
H A Ds_client.c975 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending; in s_client_main() local
3046 ssl_pending = read_ssl && SSL_has_pending(con); in s_client_main()
3048 if (!ssl_pending) { in s_client_main()
3134 if (!ssl_pending in s_client_main()
3207 else if (!ssl_pending && write_tty) in s_client_main()
3209 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds)) in s_client_main()
3229 } else if (ssl_pending in s_client_main()
/freebsd/crypto/openssl/ssl/
H A Dssl_local.h434 size_t (*ssl_pending)(const SSL *s); member
H A Dssl_lib.c1921 size_t pending = s->method->ssl_pending(s); in SSL_pending()