Interface TransportCryptoManager.HandshakeListener
-
- Enclosing class:
- TransportCryptoManager
public static interface TransportCryptoManager.HandshakeListener
-
-
Field Summary
Fields Modifier and Type Field Description static int
MATCH_CRYPTO_AUTO_FALLBACK
static int
MATCH_CRYPTO_NO_AUTO_FALLBACK
static int
MATCH_NONE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaximumPlainHeaderLength()
void
gotSecret(byte[] session_secret)
void
handshakeFailure(java.lang.Throwable failure_msg)
void
handshakeSuccess(ProtocolDecoder decoder, java.nio.ByteBuffer remaining_initial_data)
int
matchPlainHeader(java.nio.ByteBuffer buffer)
-
-
-
Field Detail
-
MATCH_NONE
static final int MATCH_NONE
- See Also:
- Constant Field Values
-
MATCH_CRYPTO_NO_AUTO_FALLBACK
static final int MATCH_CRYPTO_NO_AUTO_FALLBACK
- See Also:
- Constant Field Values
-
MATCH_CRYPTO_AUTO_FALLBACK
static final int MATCH_CRYPTO_AUTO_FALLBACK
- See Also:
- Constant Field Values
-
-
Method Detail
-
handshakeSuccess
void handshakeSuccess(ProtocolDecoder decoder, java.nio.ByteBuffer remaining_initial_data)
-
handshakeFailure
void handshakeFailure(java.lang.Throwable failure_msg)
-
gotSecret
void gotSecret(byte[] session_secret)
-
getMaximumPlainHeaderLength
int getMaximumPlainHeaderLength()
-
matchPlainHeader
int matchPlainHeader(java.nio.ByteBuffer buffer)
-
-