SSL?
Hi,
I am currently using this socket.io c++ client. However, it looks like the project hasn't been maintained since 2015.
It works well, and there is a tls (ssl) c++ library build target, but I am not sure if it is actually using ssl or simply defaulting to http? I am not passing any ssl certicates to the client, so I am not 100% that it is actually using https to connect to the socket.io server. I am passing an https url to the client and using the tls .a library, and the socket.io server is listening on the https port, so it appears to be working, but is there a way I can confirm this?
Thank you, Gabe
Hi, for the TLS implementataion we are using the asio library. As far as I know, TLS works properly with this library. If you want to be sure, you can use Wireshark to investigate all the traffic that is sent between the server and the client and make sure that there is a proper TLS handshake.