mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix error handing for nested filters
This commit is contained in:
parent
8b3a1bc474
commit
89f758f8c4
15 changed files with 71 additions and 75 deletions
|
@ -77,10 +77,10 @@ impl<F: Filter> Filter for TlsFilter<F> {
|
|||
}
|
||||
|
||||
#[inline]
|
||||
fn want_shutdown(&self) {
|
||||
fn want_shutdown(&self, err: Option<io::Error>) {
|
||||
match self.inner {
|
||||
InnerTlsFilter::Server(ref f) => f.want_shutdown(),
|
||||
InnerTlsFilter::Client(ref f) => f.want_shutdown(),
|
||||
InnerTlsFilter::Server(ref f) => f.want_shutdown(err),
|
||||
InnerTlsFilter::Client(ref f) => f.want_shutdown(err),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue