public final class OpenSslSessionStats
extends java.lang.Object
SSL_CTX_sess_number
限定符和类型 | 方法和说明 |
---|---|
long |
accept()
Returns the number of started SSL/TLS handshakes in server mode.
|
long |
acceptGood()
Returns the number of successfully established SSL/TLS sessions in server mode.
|
long |
acceptRenegotiate()
Returns the number of start renegotiations in server mode.
|
long |
cacheFull()
Returns the number of sessions that were removed because the maximum session cache size was exceeded.
|
long |
cbHits()
Returns the number of successfully retrieved sessions from the external session cache in server mode.
|
long |
connect()
Returns the number of started SSL/TLS handshakes in client mode.
|
long |
connectGood()
Returns the number of successfully established SSL/TLS sessions in client mode.
|
long |
connectRenegotiate()
Returns the number of start renegotiations in client mode.
|
long |
hits()
Returns the number of successfully reused sessions.
|
long |
misses()
Returns the number of sessions proposed by clients that were not found in the internal session cache
in server mode.
|
long |
number()
Returns the current number of sessions in the internal session cache.
|
long |
timeouts()
Returns the number of sessions proposed by clients and either found in the internal or external session cache
in server mode, but that were invalid due to timeout.
|
public long number()
public long connect()
public long connectGood()
public long connectRenegotiate()
public long accept()
public long acceptGood()
public long acceptRenegotiate()
public long hits()
SSL_set_session
successfully reused is counted as a hit. In server mode, a session successfully retrieved from internal or
external cache is counted as a hit.public long cbHits()
public long misses()
public long timeouts()
hits()
count.public long cacheFull()