Lines Matching full:cache
325 " cache_max=%%d default: cache default (50)\n" \
329 " cache_timeout=%%d default: cache default (1d)\n"
670 int cache_max; /* max number of session cache entries */
672 int cache_timeout; /* expiration delay of session cache entries*/
674 int cache_remove; /* enable / disable cache removement */
1518 mbedtls_ssl_cache_context cache; in main() local
1615 mbedtls_ssl_cache_init(&cache); in main()
2918 mbedtls_ssl_cache_set_max_entries(&cache, opt.cache_max); in main()
2923 mbedtls_ssl_cache_set_timeout(&cache, opt.cache_timeout); in main()
2927 mbedtls_ssl_conf_session_cache(&conf, &cache, in main()
4141 mbedtls_ssl_cache_remove(&cache, ssl.session->id, ssl.session->id_len); in main()
4171 mbedtls_ssl_cache_free(&cache); in main()