remove [] enclosing IPv6 host address

This commit is contained in:
Mark T. B. Carroll 2023-06-06 13:47:09 +01:00
parent 8f23e1765e
commit 8901dcc535
No known key found for this signature in database
GPG Key ID: E250667B9FA9EC97
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ pub fn connect_with_config<Req: IntoClientRequest>(
let uri = request.uri();
let mode = uri_mode(uri)?;
let host = request.uri().host().ok_or(Error::Url(UrlError::NoHostName))?;
let host = if host.starts_with('[') { &host[1..host.len() - 1] } else { host };
let port = uri.port_u16().unwrap_or(match mode {
Mode::Plain => 80,
Mode::Tls => 443,