Uses of Class
io.netty.handler.codec.socksx.v5.Socks5AddressType
-
Packages that use Socks5AddressType Package Description io.netty.handler.codec.socksx.v5 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 Socks5AddressType Modifier and Type Field Description private Socks5AddressType
DefaultSocks5CommandResponse. bndAddrType
static Socks5AddressType
Socks5AddressType. DOMAIN
private Socks5AddressType
DefaultSocks5CommandRequest. dstAddrType
static Socks5AddressType
Socks5AddressType. IPv4
static Socks5AddressType
Socks5AddressType. IPv6
Methods in io.netty.handler.codec.socksx.v5 that return Socks5AddressType Modifier and Type Method Description Socks5AddressType
DefaultSocks5CommandResponse. bndAddrType()
Socks5AddressType
Socks5CommandResponse. bndAddrType()
Returns the address type of theBND.ADDR
field of this response.Socks5AddressType
DefaultSocks5CommandRequest. dstAddrType()
Socks5AddressType
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 Socks5AddressType Modifier and Type Method Description int
Socks5AddressType. compareTo(Socks5AddressType o)
java.lang.String
Socks5AddressDecoder. decodeAddress(Socks5AddressType addrType, ByteBuf in)
Decodes a SOCKS5 address field into its string representation.void
Socks5AddressEncoder. encodeAddress(Socks5AddressType addrType, java.lang.String addrValue, ByteBuf out)
Encodes a SOCKS5 address.Constructors in io.netty.handler.codec.socksx.v5 with parameters of type Socks5AddressType Constructor Description DefaultSocks5CommandRequest(Socks5CommandType type, Socks5AddressType dstAddrType, java.lang.String dstAddr, int dstPort)
DefaultSocks5CommandResponse(Socks5CommandStatus status, Socks5AddressType bndAddrType)
DefaultSocks5CommandResponse(Socks5CommandStatus status, Socks5AddressType bndAddrType, java.lang.String bndAddr, int bndPort)
-