config.h: Don't use arithmetical exp for SSL_DTLS_MAX_BUFFERING

The functions requires_config_value_at_least and requires_config_value_at_most
only work with numerical constants.
This commit is contained in:
Hanno Becker 2018-08-24 15:07:29 +01:00
parent 2f5aa4c64e
commit 159a37f75d

View File

@ -3016,7 +3016,7 @@
* DTLS handshake message reassembly and future message buffering.
*
*/
//#define MBEDTLS_SSL_DTLS_MAX_BUFFERING ( 2 * 16384 )
//#define MBEDTLS_SSL_DTLS_MAX_BUFFERING 32768
//#define MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME 86400 /**< Lifetime of session tickets (if enabled) */
//#define MBEDTLS_PSK_MAX_LEN 32 /**< Max size of TLS pre-shared keys, in bytes (default 256 bits) */