diff --git a/ntex-net/src/rt_polling/driver.rs b/ntex-net/src/rt_polling/driver.rs index b85cfcdd..040eb060 100644 --- a/ntex-net/src/rt_polling/driver.rs +++ b/ntex-net/src/rt_polling/driver.rs @@ -115,8 +115,8 @@ impl Handler for StreamOpsHandler { // handle HUP if ev.is_interrupt() { - item.context.stopped(None); if item.io.take().is_some() { + item.context.stopped(None); close(id as u32, item, &self.inner.api, true); } return; @@ -200,8 +200,8 @@ impl Handler for StreamOpsHandler { err ); item.flags.insert(Flags::ERROR); - item.context.stopped(Some(err)); if item.io.take().is_some() { + item.context.stopped(Some(err)); close(id as u32, item, &self.inner.api, true); } }