Package io.netty.handler.codec.socksx.v5
Interface Socks5CommandRequest
-
- All Superinterfaces:
DecoderResultProvider
,Socks5Message
,SocksMessage
- All Known Implementing Classes:
DefaultSocks5CommandRequest
public interface Socks5CommandRequest extends Socks5Message
A SOCKS5 request detail message, as defined in the section 4, RFC1928.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
dstAddr()
Returns theDST.ADDR
field of this request.Socks5AddressType
dstAddrType()
Returns the type of theDST.ADDR
field of this request.int
dstPort()
Returns theDST.PORT
field of this request.Socks5CommandType
type()
Returns the type of this request.-
Methods inherited from interface io.netty.handler.codec.DecoderResultProvider
decoderResult, setDecoderResult
-
Methods inherited from interface io.netty.handler.codec.socksx.SocksMessage
version
-
-
-
-
Method Detail
-
type
Socks5CommandType type()
Returns the type of this request.
-
dstAddrType
Socks5AddressType dstAddrType()
Returns the type of theDST.ADDR
field of this request.
-
dstAddr
java.lang.String dstAddr()
Returns theDST.ADDR
field of this request.
-
dstPort
int dstPort()
Returns theDST.PORT
field of this request.
-
-