arduinoWebSockets
arduinoWebSockets copied to clipboard
arduinoWebSockets
Looks like there is lack of in the WebSocketsServer destructor. It is: ```cpp WebSocketsServer::~WebSocketsServer() { } ``` but should be: ```cpp WebSocketsServer::~WebSocketsServer() { if (_server) { delete _server; } }...
Hi, Are there any plans to support Client Certificate Authentication on the ESP32? I can see it is supported on the ESP8266 as this has bearssl support. Thanks
Hello, I'm using ESP32 but instead of using wifi, I want to use the sim800 module (probably with tinygsm client). is it possible to do that? if so, how can...
Why this websocket cant connect to broker.emqx.io and mqtt.eclipseprojects.io? What aetup must be taken?
Is it possible to use this library with mbed_giga (Arduino GiGa)?
Hi eveyone, i am tryin to connect to our server. (URL) I used this https://github.com/Links2004/arduinoWebSockets/issues/641 as an example. This is my code: #include #include #include #include #include #include #include #include...
I am trying to connect to my socketIO server which works with v3 client but I am not able to connect using this library and shows following output [SIoC] Disconnected!...
As the space was previously removed and will not be found. This fixes finding the session during connection negotiation, and the repeated disconnects.
Hello, I write a description of my issue on Stackoverflow : https://stackoverflow.com/questions/76593975/esp32-websocket-or-socketio-to-node-red-throught-nginx-ssl Websocket and SocketIO works from a WebPage but not from an ESP32. So I assume the issue is...
Hello All, First I want to thanks the authors of this library when i discover the websocket in 2015 it was so good to link this to a android webapp...