Uses of Class
io.netty.handler.codec.socks.SocksCmdStatus
-
Packages that use SocksCmdStatus Package Description io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks. -
-
Uses of SocksCmdStatus in io.netty.handler.codec.socks
Methods in io.netty.handler.codec.socks that return SocksCmdStatus Modifier and Type Method Description SocksCmdStatus
SocksCmdResponse. cmdStatus()
Returns theSocksCmdStatus
of thisSocksCmdResponse
static SocksCmdStatus
SocksCmdStatus. fromByte(byte b)
Deprecated.UsevalueOf(byte)
instead.static SocksCmdStatus
SocksCmdStatus. valueOf(byte b)
Returns the enum constant of this type with the specified name.static SocksCmdStatus
SocksCmdStatus. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SocksCmdStatus[]
SocksCmdStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.netty.handler.codec.socks with parameters of type SocksCmdStatus Constructor Description SocksCmdResponse(SocksCmdStatus cmdStatus, SocksAddressType addressType)
SocksCmdResponse(SocksCmdStatus cmdStatus, SocksAddressType addressType, java.lang.String host, int port)
Constructs new response and includes provided host and port as part of it.
-