Skip to content

Commit 60d0eaf

Browse files
sfacklerseanmonstar
authored andcommitted
fix(server): allow TLS shutdown before dropping connections with no_proto
This is important for TLS connections in particular Closes #1380
1 parent 8e7af7b commit 60d0eaf

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

src/proto/conn.rs

+15-4
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,20 @@ where I: AsyncRead + AsyncWrite,
447447

448448
}
449449

450+
pub fn shutdown(&mut self) -> Poll<(), io::Error> {
451+
match self.io.io_mut().shutdown() {
452+
Ok(Async::NotReady) => Ok(Async::NotReady),
453+
Ok(Async::Ready(())) => {
454+
trace!("shut down IO");
455+
Ok(Async::Ready(()))
456+
}
457+
Err(e) => {
458+
debug!("error shutting down IO: {}", e);
459+
Err(e)
460+
}
461+
}
462+
}
463+
450464
pub fn close_read(&mut self) {
451465
self.state.close_read();
452466
}
@@ -540,10 +554,7 @@ where I: AsyncRead + AsyncWrite,
540554
#[inline]
541555
fn close(&mut self) -> Poll<(), Self::SinkError> {
542556
try_ready!(self.poll_complete());
543-
self.io.io_mut().shutdown().map_err(|err| {
544-
debug!("error closing: {}", err);
545-
err
546-
})
557+
self.shutdown()
547558
}
548559
}
549560

src/proto/dispatch.rs

+1
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ where
210210
self.poll_flush()?;
211211

212212
if self.is_done() {
213+
try_ready!(self.conn.shutdown());
213214
trace!("Dispatch::poll done");
214215
Ok(Async::Ready(()))
215216
} else {

0 commit comments

Comments
 (0)