Can anybody provide me some sample example on Client and server connection using sockets in C++. I have gone through some tutorials now i want to implement it. How to start ?

link|improve this question

76% accept rate
1  
If you've actually gone through tutorials, you should have already implemented a (simple) client-server application. – Anon. Aug 18 '10 at 4:42
@Anon : I am new to C++ , I have done this in C#. I want to do this in C++ now. – Swapnil Gupta Aug 18 '10 at 4:43
I wrote something that might help here: stackoverflow.com/questions/2843277/c-winsock-p2p/… – Default Aug 18 '10 at 7:12
feedback

3 Answers

up vote 8 down vote accepted

You can find a working client-server program here: Beej's Guide to Network Programming

link|improve this answer
feedback

There is no socket API in the C++ Standard. The POSIX C API is fairly portable (the GNU libC documentation provides examples of UDP and TCP clients and servers that I usually turn to when I'm scratching together another server), or you could use the Boost.ASIO library for a more C++ experience....

link|improve this answer
feedback

A good C++ networking library is ACE. The only problem is that there aren't any good tutorials online that I have found. This book is pretty good though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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