Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use use C++ to send data through a websocket?

I want to be able to send data over a websocket in my C++ code? Is there some library or standard way that this is done? Thanks for the help, I appreciate it, and please let me know if I should provide more information.

like image 707
Amir Rustamzadeh Avatar asked Jan 06 '11 18:01

Amir Rustamzadeh


1 Answers

Please have a look at https://github.com/zaphoyd/websocketpp, which is based on Boost ASIO.

You can find a comparison of websocket implementations at http://en.wikipedia.org/wiki/Comparison_of_WebSocket_implementations.

like image 103
Michael Hilbert Avatar answered Oct 11 '22 13:10

Michael Hilbert