I need to implement a websocket client using c++. I have already created a basic websocket server using ruby. But now I want to test the connection using c/c++. Is there any easy to use libraries available to implement websockets in c/c++ ?
Thanks in advance.
There are boost::asio and Poco.Net and probably a few others, but the C-API berkeley sockets aren’t that hard, so if you don’t want to use those libraries take a look at them.
Edit: Sorry, I probably got you wrong with “websockets”. Did you look here? http://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations
(Taken from Simple C++ WebSocket Client (draft 08+ compatible)?)