| /trueos/crypto/openssl/doc/ssl/ |
| HD | SSL_want.pod | 27 return values are similar to that of L<SSL_get_error(3)|SSL_get_error(3)>. 28 Unlike L<SSL_get_error(3)|SSL_get_error(3)>, which also evaluates the 32 using L<SSL_get_error(3)|SSL_get_error(3)>. 35 the result of L<SSL_get_error(3)|SSL_get_error(3)>. 51 A call to L<SSL_get_error(3)|SSL_get_error(3)> should return 58 A call to L<SSL_get_error(3)|SSL_get_error(3)> should return 65 A call to L<SSL_get_error(3)|SSL_get_error(3)> should return 75 L<ssl(3)|ssl(3)>, L<err(3)|err(3)>, L<SSL_get_error(3)|SSL_get_error(3)>
|
| HD | SSL_accept.pod | 26 SSL_get_error() will yield B<SSL_ERROR_WANT_READ/WRITE> and SSL_accept() 32 In this case a call to SSL_get_error() with the 50 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the 63 for non-blocking BIOs. Call SSL_get_error() with the return value B<ret> 70 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>,
|
| HD | SSL_do_handshake.pod | 28 but SSL_get_error() will yield B<SSL_ERROR_WANT_READ/WRITE> and 33 to continue the handshake. In this case a call to SSL_get_error() with the 51 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the 64 for non-blocking BIOs. Call SSL_get_error() with the return value B<ret> 71 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>,
|
| HD | SSL_get_error.pod | 5 SSL_get_error - obtain result code for TLS/SSL I/O operation 11 int SSL_get_error(const SSL *ssl, int ret); 15 SSL_get_error() returns a result code (suitable for the C "switch" 18 that TLS/SSL I/O function must be passed to SSL_get_error() in parameter 21 In addition to B<ssl> and B<ret>, SSL_get_error() inspects the 22 current thread's OpenSSL error queue. Thus, SSL_get_error() must be 26 attempted, or SSL_get_error() will not work reliably. 112 SSL_get_error() was added in SSLeay 0.8.
|
| HD | SSL_connect.pod | 29 In this case a call to SSL_get_error() with the 47 by the specifications of the TLS/SSL protocol. Call SSL_get_error() with the 60 for non-blocking BIOs. Call SSL_get_error() with the return value B<ret> 67 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_accept(3)|SSL_accept(3)>,
|
| HD | SSL_shutdown.pod | 74 to continue the handshake. In this case a call to SSL_get_error() with the 99 The output of L<SSL_get_error(3)|SSL_get_error(3)> may be misleading, as an 112 Call L<SSL_get_error(3)|SSL_get_error(3)> with the return value B<ret> 119 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>,
|
| HD | SSL_write.pod | 41 L<SSL_get_error(3)|SSL_get_error(3)> with the 85 was closed. Call SSL_get_error() with the return value B<ret> to find out, 96 or action must be taken by the calling process. Call SSL_get_error() with the 103 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_read(3)|SSL_read(3)>,
|
| HD | SSL_read.pod | 57 L<SSL_get_error(3)|SSL_get_error(3)> with the 97 incomplete. Call SSL_get_error() with the return value B<ret> to find out, 109 or action must be taken by the calling process. Call SSL_get_error() with the 116 L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_write(3)|SSL_write(3)>,
|
| HD | SSL_CTX_set_client_cert_cb.pod | 32 handshake function will return immediately. L<SSL_get_error(3)|SSL_get_error(3)>
|
| HD | ssl.pod | 500 =item int B<SSL_get_error>(const SSL *ssl, int i); 727 L<SSL_get_error(3)|SSL_get_error(3)>,
|
| /trueos/crypto/openssl/ssl/ |
| HD | bio_ssl.c | 167 switch (SSL_get_error(ssl, ret)) { in ssl_read() 240 switch (SSL_get_error(ssl, ret)) { in ssl_write() 411 switch (SSL_get_error(ssl, (int)ret)) { in ssl_ctrl()
|
| /trueos/contrib/unbound/smallapp/ |
| HD | unbound-control.c | 241 r = SSL_get_error(ssl, r); in setup_ssl() 296 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) { in go_cmd()
|
| HD | unbound-anchor.c | 777 r = SSL_get_error(ssl, r); in TLS_initiate() 879 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) { in read_ssl_line() 934 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) { in read_data_chunk()
|
| /trueos/crypto/openssl/apps/ |
| HD | s_server.c | 2245 while (SSL_get_error(con, k) == SSL_ERROR_WANT_X509_LOOKUP) { in sv_body() 2258 switch (SSL_get_error(con, k)) { in sv_body() 2301 while (SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) { in sv_body() 2314 switch (SSL_get_error(con, i)) { in sv_body() 2387 while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) { in init_ssl_connection() 2616 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP) { in www_body() 2630 switch (SSL_get_error(con, i)) { in www_body()
|
| HD | s_client.c | 1653 switch (SSL_get_error(con, k)) { in MAIN() 1756 switch (SSL_get_error(con, k)) { in MAIN()
|
| /trueos/crypto/openssl/doc/crypto/ |
| HD | err.pod | 184 L<SSL_get_error(3)|SSL_get_error(3)>
|
| /trueos/contrib/sendmail/src/ |
| HD | sfsasl.c | 738 switch (ssl_err = SSL_get_error(so->con, r)) 866 switch (ssl_err = SSL_get_error(so->con, r))
|
| /trueos/contrib/unbound/util/ |
| HD | netevent.c | 966 int want = SSL_get_error(c->ssl, r); in ssl_handshake() 1028 int want = SSL_get_error(c->ssl, r); in ssl_handle_read() 1068 int want = SSL_get_error(c->ssl, r); in ssl_handle_read() 1118 int want = SSL_get_error(c->ssl, r); in ssl_handle_write() 1151 int want = SSL_get_error(c->ssl, r); in ssl_handle_write()
|
| /trueos/secure/lib/libssl/ |
| HD | Makefile.man | 57 MAN+= SSL_get_error.3
|
| /trueos/contrib/serf/buckets/ |
| HD | ssl_buckets.c | 717 ssl_err = SSL_get_error(ctx->ssl, ssl_len); in ssl_decrypt() 752 ssl_err = SSL_get_error(ctx->ssl, ssl_len); in ssl_decrypt() 901 ssl_err = SSL_get_error(ctx->ssl, ssl_len); in ssl_encrypt()
|
| /trueos/lib/libfetch/ |
| HD | common.c | 854 ssl_err = SSL_get_error(conn->ssl, ret); in fetch_ssl() 914 ssl_err = SSL_get_error(ssl, rlen); in fetch_ssl_read()
|
| /trueos/contrib/unbound/daemon/ |
| HD | remote.c | 496 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) { in ssl_print_text() 537 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) { in ssl_read_line() 2214 if(SSL_get_error(ssl, r) == SSL_ERROR_ZERO_RETURN) in handle_req() 2259 int r2 = SSL_get_error(s->ssl, r); in remote_control_callback()
|
| /trueos/crypto/openssl/util/ |
| HD | ssleay.num | 51 SSL_get_error 58 EXIST::FUNCTION:
|
| /trueos/contrib/openbsm/bin/auditdistd/ |
| HD | proto_tls.c | 162 error = SSL_get_error(ssl, ret); in ssl_check_error()
|
| /trueos/contrib/wpa/src/crypto/ |
| HD | tls_openssl.c | 2374 int err = SSL_get_error(conn->ssl, res); in openssl_handshake() 2431 int err = SSL_get_error(conn->ssl, res); in openssl_get_appl_data()
|