Package io.netty.handler.codec.socksx.v5
Interface Socks5AddressDecoder
-
public interface Socks5AddressDecoder
Decodes a SOCKS5 address field into its string representation.
-
-
Field Summary
Fields Modifier and Type Field Description static Socks5AddressDecoder
DEFAULT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
decodeAddress(Socks5AddressType addrType, ByteBuf in)
Decodes a SOCKS5 address field into its string representation.
-
-
-
Field Detail
-
DEFAULT
static final Socks5AddressDecoder DEFAULT
-
-
Method Detail
-
decodeAddress
java.lang.String decodeAddress(Socks5AddressType addrType, ByteBuf in) throws java.lang.Exception
Decodes a SOCKS5 address field into its string representation.- Parameters:
addrType
- the type of the addressin
- the input buffer which contains the SOCKS5 address field at its reader index- Throws:
java.lang.Exception
-
-