Uses of Enum Class
com.github.jh3nd3rs0n.jargyle.protocolbase.socks5.ReplyCode
Packages that use ReplyCode
Package
Description
Provides classes for the SOCKS5 protocol.
-
Uses of ReplyCode in com.github.jh3nd3rs0n.jargyle.protocolbase.socks5
Methods in com.github.jh3nd3rs0n.jargyle.protocolbase.socks5 that return ReplyCodeModifier and TypeMethodDescriptionReply.getReplyCode()Returns theReplyCodeof thisReply.static ReplyCodeReturns the enum constant of this class with the specified name.static ReplyCodeReplyCode.valueOfByte(byte b) Returns the enum constant associated with the providedbytevalue.static ReplyCode[]ReplyCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.github.jh3nd3rs0n.jargyle.protocolbase.socks5 with parameters of type ReplyCodeModifier and TypeMethodDescriptionstatic ReplyReply.newFailureInstance(ReplyCode replyCode) Returns a new failureReplywith the providedReplyCode, the server bound IPv4Addressof all zeros, and the server boundPortof zero.static ReplyReply.newInstance(ReplyCode rplyCode, Address serverBoundAddr, Port serverBoundPrt) Returns a newReplywith the providedReplyCode, the provided server boundAddress, and the provided server boundPort.