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.StringdstAddr()Returns theDST.ADDRfield of this request.Socks5AddressTypedstAddrType()Returns the type of theDST.ADDRfield of this request.intdstPort()Returns theDST.PORTfield of this request.Socks5CommandTypetype()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.ADDRfield of this request.
-
dstAddr
java.lang.String dstAddr()
Returns theDST.ADDRfield of this request.
-
dstPort
int dstPort()
Returns theDST.PORTfield of this request.
-
-