Skip to content

Commit

Permalink
Merge pull request #938 from jwilm/add-openssl-blocked-impl
Browse files Browse the repository at this point in the history
fix(net): Implement `blocked()` for OpensslStream
  • Loading branch information
seanmonstar authored Oct 19, 2016
2 parents cd6c1b6 + ac5d0ab commit fe7f819
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,10 @@ mod openssl {
fn take_socket_error(&mut self) -> io::Result<()> {
self.stream.get_mut().take_socket_error()
}

fn blocked(&self) -> Option<super::Blocked> {
self.blocked
}
}
}

Expand Down

0 comments on commit fe7f819

Please sign in to comment.