mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 16:02:59 +01:00
fix tokio-tls IoStream impl
This commit is contained in:
parent
810995ade0
commit
8dfc34e785
@ -24,7 +24,7 @@ use tokio_openssl::SslConnectorExt;
|
||||
#[cfg(all(feature = "tls", not(feature = "alpn")))]
|
||||
use native_tls::{Error as TlsError, TlsConnector as NativeTlsConnector};
|
||||
#[cfg(all(feature = "tls", not(feature = "alpn")))]
|
||||
use tokio_tls::{TlsConnector, TlsStream};
|
||||
use tokio_tls::{TlsConnector};
|
||||
|
||||
#[cfg(
|
||||
all(
|
||||
@ -1343,6 +1343,9 @@ impl AsyncWrite for Connection {
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "tls")]
|
||||
use tokio_tls::{TlsStream};
|
||||
|
||||
#[cfg(feature = "tls")]
|
||||
/// This is temp solution untile actix-net migration
|
||||
impl<Io: IoStream> IoStream for TlsStream<Io> {
|
||||
|
Loading…
Reference in New Issue
Block a user