Package io.netty.handler.codec.socksx.v4
Interface Socks4CommandRequest
-
- All Superinterfaces:
DecoderResultProvider,Socks4Message,SocksMessage
- All Known Implementing Classes:
DefaultSocks4CommandRequest
public interface Socks4CommandRequest extends Socks4Message
A SOCKS4aCONNECTorBINDrequest.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringdstAddr()Returns theDSTIPfield of this request.intdstPort()Returns theDSTPORTfield of this request.Socks4CommandTypetype()Returns the type of this request.java.lang.StringuserId()Returns theUSERIDfield 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
Socks4CommandType type()
Returns the type of this request.
-
userId
java.lang.String userId()
Returns theUSERIDfield of this request.
-
dstAddr
java.lang.String dstAddr()
Returns theDSTIPfield of this request.
-
dstPort
int dstPort()
Returns theDSTPORTfield of this request.
-
-