temporary_user_name
temporary_user_name

Reputation: 37018

How to work with sockets in C++?

All the network programming guides I can find are in C. ALL of them. Is it even possible to set up a socket connection in C++? If so, what is the #include and where can I find tutorials or documentation? I would assume there must be multiple libraries for this given the prevalence of the language-- which is considered the most well-developed and easy to use?

Upvotes: 0

Views: 462

Answers (2)

mfontanini
mfontanini

Reputation: 21900

Try using boost ASIO.

Upvotes: 3

David Schwartz
David Schwartz

Reputation: 182743

There are no significant differences between C and C++ in this respect.

Upvotes: 0

Related Questions