Use rarely used conf function to cover them

This commit is contained in:
Manuel Pégourié-Gonnard 2015-05-14 12:58:01 +02:00
parent 66dc5555f0
commit 0de074fbc1

View File

@ -6649,8 +6649,10 @@ int mbedtls_ssl_config_defaults( mbedtls_ssl_config *conf,
int ret;
#endif
conf->endpoint = endpoint;
conf->transport = transport;
/* Use the functions here so that they are covered in tests,
* but otherwise access member directly for efficiency */
mbedtls_ssl_conf_endpoint( conf, endpoint );
mbedtls_ssl_conf_transport( conf, transport );
conf->min_major_ver = MBEDTLS_SSL_MAJOR_VERSION_3;
conf->min_minor_ver = MBEDTLS_SSL_MINOR_VERSION_1; /* TLS 1.0 */