Uses of Class
io.netty.handler.codec.socksx.v5.Socks5AddressType
Packages that use Socks5AddressType
Package
Description
Encoder, decoder and their related message types for SOCKSv5 protocol.
-
Uses of Socks5AddressType in io.netty.handler.codec.socksx.v5
Fields in io.netty.handler.codec.socksx.v5 declared as Socks5AddressTypeModifier and TypeFieldDescriptionprivate final Socks5AddressType
DefaultSocks5CommandResponse.bndAddrType
static final Socks5AddressType
Socks5AddressType.DOMAIN
private final Socks5AddressType
DefaultSocks5CommandRequest.dstAddrType
static final Socks5AddressType
Socks5AddressType.IPv4
static final Socks5AddressType
Socks5AddressType.IPv6
Methods in io.netty.handler.codec.socksx.v5 that return Socks5AddressTypeModifier and TypeMethodDescriptionDefaultSocks5CommandResponse.bndAddrType()
Socks5CommandResponse.bndAddrType()
Returns the address type of theBND.ADDR
field of this response.DefaultSocks5CommandRequest.dstAddrType()
Socks5CommandRequest.dstAddrType()
Returns the type of theDST.ADDR
field of this request.static Socks5AddressType
Socks5AddressType.valueOf
(byte b) Methods in io.netty.handler.codec.socksx.v5 with parameters of type Socks5AddressTypeModifier and TypeMethodDescriptionint
Socks5AddressType.compareTo
(Socks5AddressType o) Socks5AddressDecoder.decodeAddress
(Socks5AddressType addrType, ByteBuf in) Decodes a SOCKS5 address field into its string representation.void
Socks5AddressEncoder.encodeAddress
(Socks5AddressType addrType, String addrValue, ByteBuf out) Encodes a SOCKS5 address.Constructors in io.netty.handler.codec.socksx.v5 with parameters of type Socks5AddressTypeModifierConstructorDescriptionDefaultSocks5CommandRequest
(Socks5CommandType type, Socks5AddressType dstAddrType, String dstAddr, int dstPort) DefaultSocks5CommandResponse
(Socks5CommandStatus status, Socks5AddressType bndAddrType) DefaultSocks5CommandResponse
(Socks5CommandStatus status, Socks5AddressType bndAddrType, String bndAddr, int bndPort)