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
Classes in io.netty.handler.codec.socksx.v5 that implement interfaces with type arguments of type Socks5AddressTypeModifier and TypeClassDescriptionclassThe type of address inSocks5CommandRequestandSocks5CommandResponse.Fields in io.netty.handler.codec.socksx.v5 declared as Socks5AddressTypeModifier and TypeFieldDescriptionprivate final Socks5AddressTypeDefaultSocks5CommandResponse.bndAddrTypestatic final Socks5AddressTypeSocks5AddressType.DOMAINprivate final Socks5AddressTypeDefaultSocks5CommandRequest.dstAddrTypestatic final Socks5AddressTypeSocks5AddressType.IPv4static final Socks5AddressTypeSocks5AddressType.IPv6Methods in io.netty.handler.codec.socksx.v5 that return Socks5AddressTypeModifier and TypeMethodDescriptionDefaultSocks5CommandResponse.bndAddrType()Socks5CommandResponse.bndAddrType()Returns the address type of theBND.ADDRfield of this response.DefaultSocks5CommandRequest.dstAddrType()Socks5CommandRequest.dstAddrType()Returns the type of theDST.ADDRfield of this request.static Socks5AddressTypeSocks5AddressType.valueOf(byte b) Methods in io.netty.handler.codec.socksx.v5 with parameters of type Socks5AddressTypeModifier and TypeMethodDescriptionintSocks5AddressType.compareTo(Socks5AddressType o) Socks5AddressDecoder.decodeAddress(Socks5AddressType addrType, ByteBuf in) Decodes a SOCKS5 address field into its string representation.voidSocks5AddressEncoder.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)