Add a note to rename variant

This commit is contained in:
Steven Fackler 2017-05-06 16:35:55 -07:00
parent 78c82fa3ee
commit 0efef98848
1 changed files with 1 additions and 0 deletions

View File

@ -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>),
}