2021-05-14 14:07:51 +02:00
|
|
|
Remove MBEDTLS_SSL_RECORD_CHECKING option and enable its action by default
|
|
|
|
--------------------------------------------------------------------------
|
|
|
|
|
2021-05-14 14:35:26 +02:00
|
|
|
This change does not affect users who use the default config.h, as the
|
2021-05-14 14:07:51 +02:00
|
|
|
option MBEDTLS_SSL_RECORD_CHECKING was already on by default.
|
|
|
|
|
2021-05-17 10:43:41 +02:00
|
|
|
This option was added only to control compilation of one function,
|
|
|
|
mbedtls_ssl_check_record(), which is only useful in some specific cases, so it
|
|
|
|
was made optional to allow users who don't need it to save some code space.
|
|
|
|
However, the same effect can be achieve by using link-time garbage collection.
|
2021-05-14 14:07:51 +02:00
|
|
|
|
2021-05-17 10:43:41 +02:00
|
|
|
Users who changed the default setting of the option need to change the config/
|
2021-05-17 11:16:52 +02:00
|
|
|
build system to remove that change.
|