mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
impl rustls acceptor; update filter trait
This commit is contained in:
parent
d7083c15d8
commit
1af728eb01
30 changed files with 1184 additions and 306 deletions
|
@ -49,10 +49,12 @@ impl ReadContext {
|
|||
self.0 .0.dispatch_task.wake();
|
||||
}
|
||||
|
||||
self.0 .0.filter.get().release_read_buf(buf, new_bytes)?;
|
||||
let close = self.0 .0.filter.get().release_read_buf(buf, new_bytes)?;
|
||||
|
||||
if flags.contains(Flags::IO_FILTERS) {
|
||||
self.0 .0.shutdown_filters(&self.0)?;
|
||||
} else if close {
|
||||
self.0 .0.init_shutdown(None, &self.0);
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue