mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
get read buf from inner filter for ssl filters
This commit is contained in:
parent
ab3c2efa66
commit
211eb00715
5 changed files with 10 additions and 8 deletions
|
@ -144,7 +144,7 @@ impl IoState {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
pub(super) fn shutdown_filters(&self) -> Result<(), io::Error> {
|
||||
pub(super) fn shutdown_filters(&self) -> io::Result<()> {
|
||||
let mut flags = self.flags.get();
|
||||
if !flags.intersects(Flags::IO_ERR | Flags::IO_SHUTDOWN) {
|
||||
let result = match self.filter.get().poll_shutdown() {
|
||||
|
|
|
@ -647,9 +647,7 @@ mod unixstream {
|
|||
continue;
|
||||
}
|
||||
Poll::Ready(Err(e)) => {
|
||||
log::trace!(
|
||||
"write task is closed with err during shutdown"
|
||||
);
|
||||
log::trace!("write task is closed with err during shutdown");
|
||||
this.state.close(Some(e));
|
||||
return Poll::Ready(());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue