Package io.netty.handler.codec.socksx.v4
Interface Socks4CommandResponse
-
- All Superinterfaces:
DecoderResultProvider
,Socks4Message
,SocksMessage
- All Known Implementing Classes:
DefaultSocks4CommandResponse
public interface Socks4CommandResponse extends Socks4Message
A SOCKS4a response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
dstAddr()
Returns theDSTIP
field of this response.int
dstPort()
Returns theDSTPORT
field of this response.Socks4CommandStatus
status()
Returns the status of this response.-
Methods inherited from interface io.netty.handler.codec.DecoderResultProvider
decoderResult, setDecoderResult
-
Methods inherited from interface io.netty.handler.codec.socksx.SocksMessage
version
-
-
-
-
Method Detail
-
status
Socks4CommandStatus status()
Returns the status of this response.
-
dstAddr
java.lang.String dstAddr()
Returns theDSTIP
field of this response.
-
dstPort
int dstPort()
Returns theDSTPORT
field of this response.
-
-