mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-24 14:57:16 +00:00
ESP32 increase TLS buffers
This commit is contained in:
parent
14c35bf8ad
commit
296933569e
@ -183,7 +183,11 @@ void MqttInit(void) {
|
||||
}
|
||||
|
||||
if (Mqtt.mqtt_tls) {
|
||||
#ifdef ESP32
|
||||
tlsClient = new BearSSL::WiFiClientSecure_light(2048,2048);
|
||||
#else // ESP32 - ESP8266
|
||||
tlsClient = new BearSSL::WiFiClientSecure_light(1024,1024);
|
||||
#endif
|
||||
|
||||
#ifdef USE_MQTT_AWS_IOT
|
||||
loadTlsDir(); // load key and certificate data from Flash
|
||||
|
Loading…
x
Reference in New Issue
Block a user