We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20c65f commit 4a60f97Copy full SHA for 4a60f97
mullvad-api/src/https_client_with_sni.rs
@@ -388,6 +388,9 @@ impl HttpsConnectorWithSni {
388
.map_err(|err| io::Error::new(io::ErrorKind::TimedOut, err))?
389
}
390
391
+ /// Resolve the provided `uri` to an IP and port. If the URI contains an IP, that IP will be used.
392
+ /// Otherwise `address_cache` will be preferred, and `dns_resolver` will be used as a fallback.
393
+ /// If the URI contains a port, then that port will be used.
394
async fn resolve_address(
395
address_cache: AddressCache,
396
dns_resolver: &dyn DnsResolver,
0 commit comments