Home
last modified time | relevance | path

Searched refs:session_cache_size (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dtypes.rs786 session_cache_size: c_ulong,
856 session_cache_size: c_ulong,
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs1410 fn session_cache_size() { in session_cache_size() function
1414 assert_eq!(ctx.session_cache_size(), 1234); in session_cache_size()
/third_party/openssl/ssl/
Dssl_lib.c2523 l = (long)ctx->session_cache_size; in SSL_CTX_ctrl()
2524 ctx->session_cache_size = (size_t)larg; in SSL_CTX_ctrl()
2527 return (long)ctx->session_cache_size; in SSL_CTX_ctrl()
3251 ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT; in SSL_CTX_new_ex()
Dssl_local.h856 size_t session_cache_size; member
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md379 * Added `SslContextBuilder::set_session_cache_size` and `SslContextRef::session_cache_size`.
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs1881 pub fn session_cache_size(&self) -> i64 { in session_cache_size() method