I\'m not looking to use something big like QT or wxWidgets\' APIs. I just want simple sockets that will work on Android, iOS, Windows, Mac, Linux.
I\'m making an event d
Perharps Boost.Asio (http://boost.org) or this one http://libunicomm.org based on Asio could be useful for you.
Perhaps try BOOST Asio
http://www.boost.org/doc/libs/1_49_0/doc/html/boost_asio.html
Is that light weight enough?
I've made a really simple, lightweight wrapper around the BSD Sockets API. It does TCP/IP communication only, using a server and a client (a server can optionally accept multiple client connections).
You can find it here: (don't mind the Objective-C classes, use tcpconnect.h and tcpconnect.c only): http://github.com/H2CO3/TCPHelper