blob: 40c7d539fb6d4bdc66ba4438c856c25530a27b29 [file] [log] [blame] [view]
David Horstmann95d516f2021-05-04 18:36:56 +01001Remove the `MBEDTLS_SSL_MAX_CONTENT_LEN` configuration option
2-------------------------------------------------------------
3
4This affects users who use the `MBEDTLS_SSL_MAX_CONTENT_LEN` option to
5set the maximum length of incoming and outgoing plaintext fragments,
6which can save memory by reducing the size of the TLS I/O buffers.
7
8This option is replaced by the more fine-grained options
9`MBEDTLS_SSL_IN_CONTENT_LEN` and `MBEDTLS_SSL_OUT_CONTENT_LEN` that set
10the maximum incoming and outgoing plaintext fragment lengths, respectively.