Package io.netty.handler.codec.socksx.v5
Interface Socks5PrivateAuthResponse
-
- All Superinterfaces:
DecoderResultProvider
,Socks5Message
,SocksMessage
- All Known Implementing Classes:
DefaultSocks5PrivateAuthResponse
public interface Socks5PrivateAuthResponse extends Socks5Message
A SOCKS5 subnegotiation response for private authentication.This interface corresponds to the response for private authentication methods in the range 0x80-0xFE as defined in RFC 1928. For custom private authentication protocols, this interface can be extended with additional methods.
- See Also:
- RFC 1928 Section 3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Socks5PrivateAuthStatus
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
Socks5PrivateAuthStatus status()
Returns the status of this response.- Returns:
- the authentication status
-
-