re-export SslFilter

This commit is contained in:
Nikolay Kim 2021-12-21 16:19:59 +06:00
parent 83941df5aa
commit 4cb9b13d85

View file

@ -1,8 +1,10 @@
use std::{future::Future, io, pin::Pin, task::Context, task::Poll};
use ntex_tls::openssl::{SslConnector as IoSslConnector, SslFilter};
pub use ntex_tls::openssl::SslFilter;
pub use tls_openssl::ssl::{Error as SslError, HandshakeError, SslConnector, SslMethod};
use ntex_tls::openssl::SslConnector as IoSslConnector;
use crate::io::{Base, Io};
use crate::service::{Service, ServiceFactory};
use crate::util::{PoolId, Ready};