Package | Description |
---|---|
io.netty.handler.codec.socksx.v5 |
Encoder, decoder and their related message types for SOCKSv5 protocol.
|
Modifier and Type | Field and Description |
---|---|
static Socks5AddressType |
Socks5AddressType.DOMAIN |
static Socks5AddressType |
Socks5AddressType.IPv4 |
static Socks5AddressType |
Socks5AddressType.IPv6 |
Modifier and Type | Method and Description |
---|---|
Socks5AddressType |
Socks5CommandResponse.bndAddrType()
Returns the address type of the
BND.ADDR field of this response. |
Socks5AddressType |
DefaultSocks5CommandResponse.bndAddrType() |
Socks5AddressType |
DefaultSocks5CommandRequest.dstAddrType() |
Socks5AddressType |
Socks5CommandRequest.dstAddrType()
Returns the type of the
DST.ADDR field of this request. |
static Socks5AddressType |
Socks5AddressType.valueOf(byte b) |
Modifier and Type | Method and Description |
---|---|
int |
Socks5AddressType.compareTo(Socks5AddressType o) |
String |
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.
|
Constructor and Description |
---|
DefaultSocks5CommandRequest(Socks5CommandType type,
Socks5AddressType dstAddrType,
String dstAddr,
int dstPort) |
DefaultSocks5CommandResponse(Socks5CommandStatus status,
Socks5AddressType bndAddrType) |
DefaultSocks5CommandResponse(Socks5CommandStatus status,
Socks5AddressType bndAddrType,
String bndAddr,
int bndPort) |
Copyright © 2008–2025 The Netty Project. All rights reserved.