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