From 6e088f9a0f26f3f78d5b9495a6ea4744de3e473e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 6 May 2015 17:53:08 +0100 Subject: [PATCH] Group all renamings together in Changelog --- ChangeLog | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 68d27472c..8957110c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,11 +10,10 @@ Features API Changes * All public identifiers moved to the mbedtls_* or MBEDTLS_* namespace. + Some names have been further changed to make them more consistent. Migration helpers scripts/rename.pl and include/mbedlts/compat-1.3.h are - provided. + provided. Full list of renamings in scripts/data_files/rename-1.3-2.0.txt * Headers are now found in the 'mbedtls' directory (previously 'polarssl'). - * Error codes NET_WANT_READ and NET_WANT_WRITE have been moved to the SSL - module and renamed accordingly (handled by rename.pl and compat-1.3.h) * The following _init() functions that could return errors have been split into an _init() that returns void and another function: mbedtls_ssl_init() -> mbedtls_ssl_setup() @@ -24,9 +23,6 @@ API Changes mbedtls_ctr_drbg_init() -> mbedtls_ctr_drbg_init(_buf)() * mbedtls_ssl_set_ca_chain() lost its last argument (peer_cn), now set using mbedtls_ssl_set_hostname(). - * Renamed mbedtls_pkcs11_priv_key_init() to ..._bind() and - mbedtls_pkcs11_x509_cert_init() as well (handled by rename.pl and - compat-1.3.h) * mbedtls_memory_bufer_alloc_init() now returns void * In the threading layer, mbedtls_mutex_init() and mbedtls_mutex_free() now return void.