HomeSort by: relevance | last modified time | path
    Searched refs:ssl_pending (Results 1 - 9 of 9) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/apps/
s_client.c 826 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending; local
2767 ssl_pending = read_ssl && SSL_has_pending(con);
2769 if (!ssl_pending) {
2839 if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2907 else if (!ssl_pending && write_tty)
2909 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2929 } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_client.c 922 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending; local
2816 ssl_pending = read_ssl && SSL_has_pending(con);
2818 if (!ssl_pending) {
2888 if (!ssl_pending && FD_ISSET(SSL_get_fd(con), &writefds)) {
2956 else if (!ssl_pending && write_tty)
2958 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
2978 } else if (ssl_pending || FD_ISSET(SSL_get_fd(con), &readfds)) {
  /src/crypto/external/apache2/openssl/dist/apps/
s_client.c 975 int write_tty, read_tty, write_ssl, read_ssl, tty_on, ssl_pending; local
3046 ssl_pending = read_ssl && SSL_has_pending(con);
3048 if (!ssl_pending) {
3134 if (!ssl_pending
3207 else if (!ssl_pending && write_tty)
3209 else if (!ssl_pending && FD_ISSET(fileno_stdout(), &writefds))
3229 } else if (ssl_pending
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_local.h 434 size_t (*ssl_pending)(const SSL *s); member in struct:ssl_method_st
ssl_lib.c 1919 int SSL_pending(const SSL *s)
1921 size_t pending = s->method->ssl_pending(s);
1924 * SSL_pending cannot work properly if read-ahead is enabled
1926 * impossible to fix since SSL_pending cannot report errors that may be
1927 * observed while scanning the new data. (Note that SSL_pending() is
1930 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1939 * Similar to SSL_pending() but returns a 1 to indicate that we have
1941 * number of bytes available). Unlike SSL_pending() this will take into
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_local.h 512 size_t (*ssl_pending) (const SSL *s); member in struct:ssl_method_st
ssl_lib.c 1551 int SSL_pending(const SSL *s)
1553 size_t pending = s->method->ssl_pending(s);
1556 * SSL_pending cannot work properly if read-ahead is enabled
1558 * impossible to fix since SSL_pending cannot report errors that may be
1559 * observed while scanning the new data. (Note that SSL_pending() is
1562 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1571 * Similar to SSL_pending() but returns a 1 to indicate that we have
1573 * number of bytes available). Unlike SSL_pending() this will take into
  /src/crypto/external/bsd/openssl.old/dist/ssl/
ssl_local.h 464 size_t (*ssl_pending) (const SSL *s); member in struct:ssl_method_st
ssl_lib.c 1492 int SSL_pending(const SSL *s)
1494 size_t pending = s->method->ssl_pending(s);
1497 * SSL_pending cannot work properly if read-ahead is enabled
1499 * impossible to fix since SSL_pending cannot report errors that may be
1500 * observed while scanning the new data. (Note that SSL_pending() is
1503 * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1512 * Similar to SSL_pending() but returns a 1 to indicate that we have
1514 * number of bytes available). Unlike SSL_pending() this will take into

Completed in 69 milliseconds