1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

fix tokio-tls IoStream impl

This commit is contained in:
Nikolay Kim 2018-08-23 10:27:32 -07:00
parent 810995ade0
commit 8dfc34e785

View File

@ -24,7 +24,7 @@ use tokio_openssl::SslConnectorExt;
#[cfg(all(feature = "tls", not(feature = "alpn")))] #[cfg(all(feature = "tls", not(feature = "alpn")))]
use native_tls::{Error as TlsError, TlsConnector as NativeTlsConnector}; use native_tls::{Error as TlsError, TlsConnector as NativeTlsConnector};
#[cfg(all(feature = "tls", not(feature = "alpn")))] #[cfg(all(feature = "tls", not(feature = "alpn")))]
use tokio_tls::{TlsConnector, TlsStream}; use tokio_tls::{TlsConnector};
#[cfg( #[cfg(
all( all(
@ -1343,6 +1343,9 @@ impl AsyncWrite for Connection {
} }
} }
#[cfg(feature = "tls")]
use tokio_tls::{TlsStream};
#[cfg(feature = "tls")] #[cfg(feature = "tls")]
/// This is temp solution untile actix-net migration /// This is temp solution untile actix-net migration
impl<Io: IoStream> IoStream for TlsStream<Io> { impl<Io: IoStream> IoStream for TlsStream<Io> {