pub trait ExtSniProcessor {
// Required method
fn sni(&mut self, _: EntrySniKind, _: &[u8]) -> bool;
}Expand description
Downstream SNI Processor
Required Methods§
Sourcefn sni(&mut self, _: EntrySniKind, _: &[u8]) -> bool
fn sni(&mut self, _: EntrySniKind, _: &[u8]) -> bool
Check whether any of the provided SNIs matches. When any of the entries matches, result will be true and otherwise false.