From c0656b43f1e1489f247777be336ae57121efe99f Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 16 Nov 2021 18:55:20 +0100 Subject: [PATCH] Note the reordered fields in SSL structures This is technically an API break according to the unwritten rules of API compatibility for Mbed TLS 2.x. However, it is very unlikely to affect any realistic application, with the possible exception of applications that define a global constant of type mbedtls_ssl_config. Signed-off-by: Gilles Peskine --- ChangeLog.d/semi-public-structure-fields.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ChangeLog.d/semi-public-structure-fields.txt diff --git a/ChangeLog.d/semi-public-structure-fields.txt b/ChangeLog.d/semi-public-structure-fields.txt new file mode 100644 index 000000000..802f8de2b --- /dev/null +++ b/ChangeLog.d/semi-public-structure-fields.txt @@ -0,0 +1,5 @@ +API changes + * Some fields of mbedtls_ssl_session and mbedtls_ssl_config are in a + different order. This only affects applications that define such + structures directly or serialize them. +