|
RetroArch
|
#include "mbedtls/config.h"#include "mbedtls/platform.h"#include "mbedtls/ssl_cache.h"#include <string.h>Functions | |
| void | mbedtls_ssl_cache_init (mbedtls_ssl_cache_context *cache) |
| Initialize an SSL cache context. More... | |
| int | mbedtls_ssl_cache_get (void *data, mbedtls_ssl_session *session) |
| Cache get callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled) More... | |
| int | mbedtls_ssl_cache_set (void *data, const mbedtls_ssl_session *session) |
| Cache set callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled) More... | |
| void | mbedtls_ssl_cache_set_timeout (mbedtls_ssl_cache_context *cache, int timeout) |
| Set the cache timeout (Default: MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT (1 day)) More... | |
| void | mbedtls_ssl_cache_set_max_entries (mbedtls_ssl_cache_context *cache, int max) |
| Set the maximum number of cache entries (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50)) More... | |
| void | mbedtls_ssl_cache_free (mbedtls_ssl_cache_context *cache) |
| Free referenced items in a cache context and clear memory. More... | |
| void mbedtls_ssl_cache_free | ( | mbedtls_ssl_cache_context * | cache | ) |
Free referenced items in a cache context and clear memory.
| cache | SSL cache context |
| int mbedtls_ssl_cache_get | ( | void * | data, |
| mbedtls_ssl_session * | session | ||
| ) |
Cache get callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled)
| data | SSL cache context |
| session | session to retrieve entry for |
| void mbedtls_ssl_cache_init | ( | mbedtls_ssl_cache_context * | cache | ) |
Initialize an SSL cache context.
| cache | SSL cache context |
| int mbedtls_ssl_cache_set | ( | void * | data, |
| const mbedtls_ssl_session * | session | ||
| ) |
Cache set callback implementation (Thread-safe if MBEDTLS_THREADING_C is enabled)
| data | SSL cache context |
| session | session to store entry for |
| void mbedtls_ssl_cache_set_max_entries | ( | mbedtls_ssl_cache_context * | cache, |
| int | max | ||
| ) |
Set the maximum number of cache entries (Default: MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES (50))
| cache | SSL cache context |
| max | cache entry maximum |
| void mbedtls_ssl_cache_set_timeout | ( | mbedtls_ssl_cache_context * | cache, |
| int | timeout | ||
| ) |
Set the cache timeout (Default: MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT (1 day))
A timeout of 0 indicates no timeout.
| cache | SSL cache context |
| timeout | cache entry timeout in seconds |
1.8.15