⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ssl_ctx_sess_number.pod

📁 开源的ssl算法openssl,版本0.9.8H
💻 POD
字号:
=pod=head1 NAMESSL_CTX_sess_number, SSL_CTX_sess_connect, SSL_CTX_sess_connect_good, SSL_CTX_sess_connect_renegotiate, SSL_CTX_sess_accept, SSL_CTX_sess_accept_good, SSL_CTX_sess_accept_renegotiate, SSL_CTX_sess_hits, SSL_CTX_sess_cb_hits, SSL_CTX_sess_misses, SSL_CTX_sess_timeouts, SSL_CTX_sess_cache_full - obtain session cache statistics=head1 SYNOPSIS #include <openssl/ssl.h> long SSL_CTX_sess_number(SSL_CTX *ctx); long SSL_CTX_sess_connect(SSL_CTX *ctx); long SSL_CTX_sess_connect_good(SSL_CTX *ctx); long SSL_CTX_sess_connect_renegotiate(SSL_CTX *ctx); long SSL_CTX_sess_accept(SSL_CTX *ctx); long SSL_CTX_sess_accept_good(SSL_CTX *ctx); long SSL_CTX_sess_accept_renegotiate(SSL_CTX *ctx); long SSL_CTX_sess_hits(SSL_CTX *ctx); long SSL_CTX_sess_cb_hits(SSL_CTX *ctx); long SSL_CTX_sess_misses(SSL_CTX *ctx); long SSL_CTX_sess_timeouts(SSL_CTX *ctx); long SSL_CTX_sess_cache_full(SSL_CTX *ctx);=head1 DESCRIPTIONSSL_CTX_sess_number() returns the current number of sessions in the internalsession cache.SSL_CTX_sess_connect() returns the number of started SSL/TLS handshakes inclient mode.SSL_CTX_sess_connect_good() returns the number of successfully establishedSSL/TLS sessions in client mode.SSL_CTX_sess_connect_renegotiate() returns the number of start renegotiationsin client mode.SSL_CTX_sess_accept() returns the number of started SSL/TLS handshakes inserver mode.SSL_CTX_sess_accept_good() returns the number of successfully establishedSSL/TLS sessions in server mode.SSL_CTX_sess_accept_renegotiate() returns the number of start renegotiationsin server mode.SSL_CTX_sess_hits() returns the number of successfully reused sessions.In client mode a session set with L<SSL_set_session(3)|SSL_set_session(3)>successfully reused is counted as a hit. In server mode a session successfullyretrieved from internal or external cache is counted as a hit.SSL_CTX_sess_cb_hits() returns the number of successfully retrieved sessionsfrom the external session cache in server mode.SSL_CTX_sess_misses() returns the number of sessions proposed by clientsthat were not found in the internal session cache in server mode.SSL_CTX_sess_timeouts() returns the number of sessions proposed by clientsand either found in the internal or external session cache in server mode, but that were invalid due to timeout. These sessions are not included inthe SSL_CTX_sess_hits() count.SSL_CTX_sess_cache_full() returns the number of sessions that were removedbecause the maximum session cache size was exceeded.=head1 RETURN VALUESThe functions return the values indicated in the DESCRIPTION section.=head1 SEE ALSOL<ssl(3)|ssl(3)>, L<SSL_set_session(3)|SSL_set_session(3)>,L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>L<SSL_CTX_sess_set_cache_size(3)|SSL_CTX_sess_set_cache_size(3)>=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -