#34 minor style change

This commit is contained in:
Yan Zhai 2019-04-22 04:08:13 +00:00
parent 87916dade6
commit 0cbd252ee4
2 changed files with 6 additions and 12 deletions

View File

@ -187,13 +187,10 @@ where
IO: AsyncRead + AsyncWrite,
{
fn shutdown(&mut self) -> Poll<(), io::Error> {
match self.state {
s if !s.writeable() => (),
_ => {
if self.state.writeable() {
self.session.send_close_notify();
self.state.shutdown_write();
}
}
let mut stream = Stream::new(&mut self.io, &mut self.session);
try_nb!(stream.flush());

View File

@ -121,13 +121,10 @@ where
IO: AsyncRead + AsyncWrite,
{
fn shutdown(&mut self) -> Poll<(), io::Error> {
match self.state {
s if !s.writeable() => (),
_ => {
if self.state.writeable() {
self.session.send_close_notify();
self.state.shutdown_write();
}
}
let mut stream = Stream::new(&mut self.io, &mut self.session);
try_nb!(stream.complete_io());