mirror of https://github.com/fafhrd91/actix-net
re-export openssl connector builder
This commit is contained in:
parent
90f205a465
commit
6c0de85f5d
|
@ -1,7 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
* Re-export `openssl::SslConnectorBuilder` in `connect::openssl::reexports`. [#???]
|
||||||
|
|
||||||
|
[#???]: https://github.com/actix/actix-net/pull/???
|
||||||
|
|
||||||
## 3.0.0-rc.1 - 2021-11-29
|
## 3.0.0-rc.1 - 2021-11-29
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -22,7 +22,9 @@ use crate::connect::{Connection, Host};
|
||||||
pub mod reexports {
|
pub mod reexports {
|
||||||
//! Re-exports from `openssl` and `tokio-openssl` that are useful for connectors.
|
//! Re-exports from `openssl` and `tokio-openssl` that are useful for connectors.
|
||||||
|
|
||||||
pub use openssl::ssl::{Error, HandshakeError, SslConnector, SslMethod};
|
pub use openssl::ssl::{
|
||||||
|
Error, HandshakeError, SslConnector, SslConnectorBuilder, SslMethod,
|
||||||
|
};
|
||||||
|
|
||||||
pub use tokio_openssl::SslStream as AsyncSslStream;
|
pub use tokio_openssl::SslStream as AsyncSslStream;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue