java.lang.EnumAnjavax.net.ssl.SSLEngineResult$HandshakeStatus
SSLEngineResult
enum describing the current
handshaking state of this SSLEngine
.Brad
- R. Wetmore1.5
- Field Summary | ||
---|---|---|
public static HandshakeStatus | NOT_HANDSHAKING | The SSLEngine is not currently handshaking. |
public static HandshakeStatus | FINISHED | The SSLEngine has just finished handshaking.
This value is only generated by a call to
|
public static HandshakeStatus | NEED_TASK | The SSLEngine needs the results of one (or more)
delegated tasks before handshaking can continue.
|
public static HandshakeStatus | NEED_WRAP | The SSLEngine must send data to the remote side
before handshaking can continue, so SSLEngine.wrap()
should be called.
|
public static HandshakeStatus | NEED_UNWRAP | The SSLEngine needs to receive data from the
remote side before handshaking can continue. |