Deleted Added
full compact
SSL_get_error.pod (312826) SSL_get_error.pod (344604)
1=pod
2
3=head1 NAME
4
5SSL_get_error - obtain result code for TLS/SSL I/O operation
6
7=head1 SYNOPSIS
8

--- 76 unchanged lines hidden (view full) ---

85
86The operation did not complete because an application callback set by
87SSL_CTX_set_client_cert_cb() has asked to be called again.
88The TLS/SSL I/O function should be called again later.
89Details depend on the application.
90
91=item SSL_ERROR_SYSCALL
92
1=pod
2
3=head1 NAME
4
5SSL_get_error - obtain result code for TLS/SSL I/O operation
6
7=head1 SYNOPSIS
8

--- 76 unchanged lines hidden (view full) ---

85
86The operation did not complete because an application callback set by
87SSL_CTX_set_client_cert_cb() has asked to be called again.
88The TLS/SSL I/O function should be called again later.
89Details depend on the application.
90
91=item SSL_ERROR_SYSCALL
92
93Some non-recoverable I/O error occurred.
94The OpenSSL error queue may contain more information on the error.
95For socket I/O on Unix systems, consult B<errno> for details.
93Some non-recoverable, fatal I/O error occurred. The OpenSSL error queue may
94contain more information on the error. For socket I/O on Unix systems, consult
95B<errno> for details. If this error occurs then no further I/O operations should
96be performed on the connection and SSL_shutdown() must not be called.
96
97=item SSL_ERROR_SSL
98
97
98=item SSL_ERROR_SSL
99
99A failure in the SSL library occurred, usually a protocol error. The
100OpenSSL error queue contains more information on the error.
100A non-recoverable, fatal error in the SSL library occurred, usually a protocol
101error. The OpenSSL error queue contains more information on the error. If this
102error occurs then no further I/O operations should be performed on the
103connection and SSL_shutdown() must not be called.
101
102=back
103
104=head1 SEE ALSO
105
106L<ssl(3)|ssl(3)>, L<err(3)|err(3)>
107
108=head1 HISTORY
109
110SSL_get_error() was added in SSLeay 0.8.
111
112=cut
104
105=back
106
107=head1 SEE ALSO
108
109L<ssl(3)|ssl(3)>, L<err(3)|err(3)>
110
111=head1 HISTORY
112
113SSL_get_error() was added in SSLeay 0.8.
114
115=cut