|
|
Returns the status of the last SSL I/O operation. All SSL I/O functions (for example, SSL_read(), SSL_write(), SSL_do_handshake(), SSL_connect() and SSL_accept()) have a return code ret_code indicating the success (or status) of the operation. -
Parameters:
-
| ssl |
[In] The SSL which returned the error. |
| func_ret |
[In] The function return code from the previous SSL handshake. This code can be either read or write. |
-
Returns:
-
SSL_ERROR_NONE indicates success.
See Error Codes for valid values.
-
See also:
-
SSL_do_handshake(), SSL_read() and SSL_write().
-
Example:
-
-
Samples:
-
cache_server.c, p7ssl_client.c, p7ssl_server.c, simple.c, ssl_client.c, and ssl_server.c.
|