mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-25 13:43:31 +00:00
tests: ssl: Add max_early_data_size option
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
parent
9b4e964c2c
commit
5d3036e6d5
@ -114,6 +114,7 @@ typedef struct mbedtls_test_handshake_test_options {
|
|||||||
void (*cli_log_fun)(void *, int, const char *, int, const char *);
|
void (*cli_log_fun)(void *, int, const char *, int, const char *);
|
||||||
int resize_buffers;
|
int resize_buffers;
|
||||||
int early_data;
|
int early_data;
|
||||||
|
int max_early_data_size;
|
||||||
#if defined(MBEDTLS_SSL_CACHE_C)
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
||||||
mbedtls_ssl_cache_context *cache;
|
mbedtls_ssl_cache_context *cache;
|
||||||
#endif
|
#endif
|
||||||
|
@ -68,6 +68,7 @@ void mbedtls_test_init_handshake_options(
|
|||||||
opts->legacy_renegotiation = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
|
opts->legacy_renegotiation = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
|
||||||
opts->resize_buffers = 1;
|
opts->resize_buffers = 1;
|
||||||
opts->early_data = MBEDTLS_SSL_EARLY_DATA_DISABLED;
|
opts->early_data = MBEDTLS_SSL_EARLY_DATA_DISABLED;
|
||||||
|
opts->max_early_data_size = -1;
|
||||||
#if defined(MBEDTLS_SSL_CACHE_C)
|
#if defined(MBEDTLS_SSL_CACHE_C)
|
||||||
TEST_CALLOC(opts->cache, 1);
|
TEST_CALLOC(opts->cache, 1);
|
||||||
mbedtls_ssl_cache_init(opts->cache);
|
mbedtls_ssl_cache_init(opts->cache);
|
||||||
@ -815,6 +816,13 @@ int mbedtls_test_ssl_endpoint_init(
|
|||||||
|
|
||||||
#if defined(MBEDTLS_SSL_EARLY_DATA)
|
#if defined(MBEDTLS_SSL_EARLY_DATA)
|
||||||
mbedtls_ssl_conf_early_data(&(ep->conf), options->early_data);
|
mbedtls_ssl_conf_early_data(&(ep->conf), options->early_data);
|
||||||
|
#if defined(MBEDTLS_SSL_SRV_C)
|
||||||
|
if (endpoint_type == MBEDTLS_SSL_IS_SERVER &&
|
||||||
|
(options->max_early_data_size >= 0)) {
|
||||||
|
mbedtls_ssl_conf_max_early_data_size(&(ep->conf),
|
||||||
|
options->max_early_data_size);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_CACHE_C) && defined(MBEDTLS_SSL_SRV_C)
|
#if defined(MBEDTLS_SSL_CACHE_C) && defined(MBEDTLS_SSL_SRV_C)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user