Page 1 of 1

Alternative to wxSocket but not boost ...

Posted: Fri May 30, 2014 11:42 am
by valiyuneski
Hi Eran,

Can you by any chance suggest what would you use as an alternative to wxSocket (which produces a lot of problems)
aside BOOST.ASIO which is too heavy in my humble opinion ?

Re: Alternative to wxSocket but not boost ...

Posted: Fri May 30, 2014 2:21 pm
by eranif
I wrote a small wrapper around ZeroMQ https://github.com/eranif/ZeroMQCxxAPI
You might want to have a look at it.
Or you can have a look at my socket wrapper in codelite sources https://github.com/eranif/codelite/tree ... /SocketAPI

Eran

Re: Alternative to wxSocket but not boost ...

Posted: Sat May 31, 2014 8:42 pm
by petah
I use ASIO/non-Boost, which uses C++11, it works great on Linux, Win, OSX and even iOS. It's a header-only implementation.

http://www.think-async.com

I suggest getting the code directly from git.

cheers,

-- p