Gil Maimon

Results 45 comments of Gil Maimon

Hi, thank you for opening the issue. There is no support for that currently, no one has ever requested it before so it wasn't on my backlog. As the library...

Sorry for the delay. If you want to work on this feature, I recommand lookin at how the library handles secure vs non secure clients. See [this for configuration](https://github.com/gilmaimon/ArduinoWebsockets/blob/master/src/tiny_websockets/internals/ws_common.hpp#L19) and...

When the client object goes out of scope, the connection is closed. If you want to keep receiving/sending messages, you should not let the object go out of scope. Instead...

https://stackoverflow.com/questions/7885785/using-openssl-to-get-the-certificate-from-a-server

Hi, So, I was able to reproduce. The problem as far as I understand it has nothing to do with the library itself, it seems like esp32's WiFiServer impl claims...

Hi! First of all, I really appreciate the code donation and the time you invested in it. Although this is an important feature (actually bugfix...) the changes seem massive compared...

Really good and important suggestion, I'm opening this for PR's :)

Can you just do a GET request, parse the result and then, once you have the endpoint, create a new websocket connection? Regarding how to do GET requests on an...

Is this a warning only or error? Is there anything wrong with the connection itself? What sketch are you running?

I'm running this example sketch: ```c++ using namespace websockets; WebsocketsClient client; void setup() { Serial.begin(115200); // Connect to wifi WiFi.begin(ssid, password); // Wait some time to connect to wifi for(int...