Are there any classes in standard template library , which help in networking or in standard C library , other than using native API like wsock32 or third party toolkit like QT or wxwidgets.
Printable View
Are there any classes in standard template library , which help in networking or in standard C library , other than using native API like wsock32 or third party toolkit like QT or wxwidgets.
No, there aren“t.
There is always Boost threads.
http://www.boost.org/doc/libs/1_45_0...ml/thread.html
There will also be thread support in C++ Ox
http://www2.research.att.com/~bs/C++0xFAQ.html#std-thread
Your compiler may already support them.
thank you all
Exactly what kind of networking do you want to do? libcurl supports several network protocols, and is the standard for things like that. It's primarily used for internet and non-local networks, but can do private networking too.
Boost ASIO supports socket communication via the iostream interface.