diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-07 18:50:58 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-07 18:50:58 +0100 |
commit | 11c6f0b1c29b10893de9390f5be559de49e78410 (patch) | |
tree | 92a1208b960e390b034fdc59502b4b67789fd102 /src/http.rs | |
parent | e8b789f5e047c074af25dd814ed8309216d57e0f (diff) | |
download | tricot-11c6f0b1c29b10893de9390f5be559de49e78410.tar.gz tricot-11c6f0b1c29b10893de9390f5be559de49e78410.zip |
Better handle get_cert for https request (faster path, hostname verification)
Diffstat (limited to 'src/http.rs')
-rw-r--r-- | src/http.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.rs b/src/http.rs index 4731645..2b26e6d 100644 --- a/src/http.rs +++ b/src/http.rs @@ -1,5 +1,5 @@ -use std::sync::Arc; use std::net::SocketAddr; +use std::sync::Arc; use anyhow::Result; use log::*; |