diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2019-02-26 18:08:25 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2019-02-26 18:08:25 +0000 |
commit | d98e9d8878016a75426544bc9110d4ce403abf61 (patch) | |
tree | cd7dfaf70d9f96469677e272904249a9dc38bff8 /doc/ssl/SSL_get_error.pod | |
parent | f12dd99bc33eefb702280bdaed6156a57d867be1 (diff) |
Diffstat (limited to 'doc/ssl/SSL_get_error.pod')
-rw-r--r-- | doc/ssl/SSL_get_error.pod | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/doc/ssl/SSL_get_error.pod b/doc/ssl/SSL_get_error.pod index 2a93894096e76..7537616d475c7 100644 --- a/doc/ssl/SSL_get_error.pod +++ b/doc/ssl/SSL_get_error.pod @@ -90,14 +90,17 @@ Details depend on the application. =item SSL_ERROR_SYSCALL -Some non-recoverable I/O error occurred. -The OpenSSL error queue may contain more information on the error. -For socket I/O on Unix systems, consult B<errno> for details. +Some non-recoverable, fatal I/O error occurred. The OpenSSL error queue may +contain more information on the error. For socket I/O on Unix systems, consult +B<errno> for details. If this error occurs then no further I/O operations should +be performed on the connection and SSL_shutdown() must not be called. =item SSL_ERROR_SSL -A failure in the SSL library occurred, usually a protocol error. The -OpenSSL error queue contains more information on the error. +A non-recoverable, fatal error in the SSL library occurred, usually a protocol +error. The OpenSSL error queue contains more information on the error. If this +error occurs then no further I/O operations should be performed on the +connection and SSL_shutdown() must not be called. =back |