Make Address::fmt prettier

This commit is contained in:
Sijmen 2018-07-29 17:59:29 +02:00
parent 91b05ddcf0
commit 0f49fb6c59
1 changed files with 3 additions and 3 deletions

View File

@ -60,9 +60,9 @@ struct Address<'a> {
impl<'a> fmt::Display for Address<'a> { impl<'a> fmt::Display for Address<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.ip.is_ipv4() { match self.ip {
true => write!(f, "{} {}:{}", self.protocol, self.ip, self.port), IpAddr::V4(ip) => write!(f, "{} {}:{}", self.protocol, ip, self.port),
false => write!(f, "{} [{}]:{}", self.protocol, self.ip, self.port) IpAddr::V6(ip) => write!(f, "{} [{}]:{}", self.protocol, ip, self.port)
} }
} }
} }