mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
add .boxed_secure_connector for http client
This commit is contained in:
parent
38258c5019
commit
6b8628a33d
1 changed files with 13 additions and 0 deletions
|
@ -210,6 +210,19 @@ impl Connector {
|
|||
self
|
||||
}
|
||||
|
||||
/// Use custom boxed connector to open secure connections.
|
||||
pub fn boxed_secure_connector<T>(mut self, connector: T) -> Self
|
||||
where
|
||||
T: Service<
|
||||
Request = TcpConnect<Uri>,
|
||||
Response = IoBoxed,
|
||||
Error = crate::connect::ConnectError,
|
||||
> + 'static,
|
||||
{
|
||||
self.ssl_connector = Some(boxed::service(connector.map_err(ConnectError::from)));
|
||||
self
|
||||
}
|
||||
|
||||
/// Finish configuration process and create connector service.
|
||||
/// The Connector builder always concludes by calling `finish()` last in
|
||||
/// its combinator chain.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue