aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/ssl/error.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/src/ssl/error.rs b/openssl/src/ssl/error.rs
index 73eb2d47..74782d7a 100644
--- a/openssl/src/ssl/error.rs
+++ b/openssl/src/ssl/error.rs
@@ -74,6 +74,7 @@ pub enum HandshakeError<S> {
/// The handshake failed.
Failure(MidHandshakeSslStream<S>),
/// The handshake was interrupted midway through. This error will never be returned for blocking streams.
+ // FIXME change to WouldBlock
Interrupted(MidHandshakeSslStream<S>),
}