vote up 0 vote down star
1

I am a begginer C++ programmer. In C#, I used the System.Net.Sockets.Socket class, which represents a networking socket, to create/connect a server. How can I do the same thing in C/C++? Are there any classes like this?

flag

5 Answers

vote up 5 vote down check

In windows theres a library called winsock.dll.

In Unix, you can use unix sockets

Then, theres boost sockets

beej guide to internet sockets

windows sockets

boost networking

link|flag
vote up 0 vote down

Sockets are not a fundamental part of either C or C++. If you are on Windows, start off with Winsock.

link|flag
vote up 0 vote down

I've done a little bit with libcurl, this question has tonnes of answers:

http://stackoverflow.com/questions/118945/best-c-c-network-library

...OK to be fair, libcurl doesn't work directly with sockets, so maybe it's not what you're looking for. But it does support a great many protocols.

link|flag
vote up 1 vote down

I would recommend reading beej's guide to Network Socket programming. It is a really good source full of good explanations.

link|flag
vote up 0 vote down

Since you used System.Net.Sockets.Socket in C#, you can use System::Net::Sockets::Socket in C++/CLI--a language which is a .NET flavor of C++.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.