KaranGauswami
9 months ago
No known key found for this signature in database
GPG Key ID: A4D57BC9D0772045
1 changed files with
1 additions and
1 deletions
-
src/main.rs
|
|
@ -28,7 +28,7 @@ struct AuthParams { |
|
|
|
fn socket_addr(s: &str) -> Result<SocketAddr> { |
|
|
|
let mut address = s.to_socket_addrs()?; |
|
|
|
let address = address.next(); |
|
|
|
Ok(address.ok_or_eyre(format!("no IP address found for the hostname"))?) |
|
|
|
address.ok_or_eyre("no IP address found for the hostname".to_string()) |
|
|
|
} |
|
|
|
|
|
|
|
#[derive(Parser, Debug)] |
|
|
|