You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to set up multiple SSL connections using TinyGSM and SSLClient for an ESP32 project. One connection is for MQTT and another for HTTPS communication. However, when creating the second SSLClient instance, I'm getting the warning: "Arduino client is already connected? Continuing anyway sometimes.
// First client setup
TinyGsmClient clientGSM(modem, 1); // First TinyGSM client
SSLClient net(clientGSM, TAs, (size_t)TAs_NUM, 3, 9); // First SSL client for MQTT
// Second client setup - This causes the warning
TinyGsmClient client2GSM(modem, 2); // Second TinyGSM client
SSLClient net2(client2GSM, TAs, (size_t)TAs_NUM, 3, 9); // Second SSL client - generates warning
I'm trying to set up multiple SSL connections using TinyGSM and SSLClient for an ESP32 project. One connection is for MQTT and another for HTTPS communication. However, when creating the second SSLClient instance, I'm getting the warning: "Arduino client is already connected? Continuing anyway sometimes.
and using net2 like
The text was updated successfully, but these errors were encountered: