We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56791de commit 2db9a90Copy full SHA for 2db9a90
socks5-client/src/encoding.rs
@@ -188,22 +188,22 @@ impl Encoding for HostName {
188
HostName::Dns(name) => {
189
DOMAIN.encode(writer)?;
190
name.to_string()
191
- },
+ }
192
#[cfg(feature = "tor")]
193
HostName::Tor(addr) => {
194
195
addr.to_string()
196
197
#[cfg(feature = "i2p")]
198
HostName::I2p(addr) => {
199
200
201
202
#[cfg(feature = "nym")]
203
HostName::Nym(addr) => {
204
205
206
207
_ => return Err(EncodingError::AddrNotSupported),
208
};
209
let len =
0 commit comments