views:

511

answers:

3

I need a C++ STL (iostream, string, etc.) based tcp socket client / server. Does anybody know such library?

+12  A: 

Check out Boost.Asio for modern C++ style network communications.

Georg Fritzsche
I don't know why, but i am not a fan of boost. I go for the Poco library.
VDVLeon
+5  A: 

You can try: boost.asio

Naveen
+2  A: 

The Net library from the Poco C++ libraries builds upon STL.

StackedCrooked
I like the Poco library. Never heard of it before, thnx!
VDVLeon