mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Create the correct PskIdentity type on query (#138)
This commit is contained in:
parent
bc51d800ff
commit
7b4696b193
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ impl<F: Filter> Filter for SslFilter<F> {
|
|||
}
|
||||
} else if id == any::TypeId::of::<PskIdentity>() {
|
||||
if let Some(psk_id) = self.inner.borrow().ssl().psk_identity() {
|
||||
Some(Box::new(psk_id.to_vec()))
|
||||
Some(Box::new(PskIdentity(psk_id.to_vec())))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue