mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
Refactor ntex-connect (#314)
This commit is contained in:
parent
5414e2096a
commit
baabcff4a6
35 changed files with 446 additions and 437 deletions
|
@ -9,7 +9,8 @@ async fn main() -> io::Result<()> {
|
|||
env_logger::init();
|
||||
|
||||
// rustls config
|
||||
let cert_store = RootCertStore::from_iter(webpki_roots::TLS_SERVER_ROOTS.iter().cloned());
|
||||
let cert_store =
|
||||
RootCertStore::from_iter(webpki_roots::TLS_SERVER_ROOTS.iter().cloned());
|
||||
let config = ClientConfig::builder()
|
||||
.with_root_certificates(cert_store)
|
||||
.with_no_client_auth();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue