arduinoWebSockets
arduinoWebSockets copied to clipboard
Added necessary functions to work with multiple SSL
Functions added:
void enableLoop(void);
void disableLoop(void);
Variable added:
bool _loopLocked = false;
Function copyed after #ifdef HAS_SSL to be able to use without BearSSL
void beginSSLWithCA(const char * host, uint16_t port, const char * url = "/socket.io/?EIO=3", const char * CA_cert = NULL, const char * protocol = "arduino");
the copy of the function will fail for the ESP8266 since it will be there 2 times with the SSL_BARESSL define.
moving it is the better option here ;)
#756
Oh i see. I will make a change.