mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
update default generic type for ssl filters
This commit is contained in:
parent
52d6c6580e
commit
0b98468c1a
3 changed files with 5 additions and 5 deletions
|
@ -4,7 +4,7 @@ use std::sync::Arc;
|
|||
use std::{any, future::Future, io, pin::Pin, task::Context, task::Poll};
|
||||
|
||||
use ntex_bytes::BytesMut;
|
||||
use ntex_io::{Filter, FilterFactory, Io, IoRef, WriteReadiness};
|
||||
use ntex_io::{Base, Filter, FilterFactory, Io, IoRef, WriteReadiness};
|
||||
use ntex_util::time::Millis;
|
||||
use tls_rust::{ClientConfig, ServerConfig, ServerName};
|
||||
|
||||
|
@ -17,7 +17,7 @@ use self::client::TlsClientFilter;
|
|||
use self::server::TlsServerFilter;
|
||||
|
||||
/// An implementation of SSL streams
|
||||
pub struct TlsFilter<F> {
|
||||
pub struct TlsFilter<F = Base> {
|
||||
inner: InnerTlsFilter<F>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue