Skip to content

Commit 2db9a90

Browse files
committed
chore: fmt
1 parent 56791de commit 2db9a90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

socks5-client/src/encoding.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -188,22 +188,22 @@ impl Encoding for HostName {
188188
HostName::Dns(name) => {
189189
DOMAIN.encode(writer)?;
190190
name.to_string()
191-
},
191+
}
192192
#[cfg(feature = "tor")]
193193
HostName::Tor(addr) => {
194194
DOMAIN.encode(writer)?;
195195
addr.to_string()
196-
},
196+
}
197197
#[cfg(feature = "i2p")]
198198
HostName::I2p(addr) => {
199199
DOMAIN.encode(writer)?;
200200
addr.to_string()
201-
},
201+
}
202202
#[cfg(feature = "nym")]
203203
HostName::Nym(addr) => {
204204
DOMAIN.encode(writer)?;
205205
addr.to_string()
206-
},
206+
}
207207
_ => return Err(EncodingError::AddrNotSupported),
208208
};
209209
let len =

0 commit comments

Comments
 (0)