Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am beginner in c++ networking?
I want c++ data transferring between two computers tutorial?
Posted
Comments
Albert Holguin 21-Mar-13 23:58pm    
You can simply google your question to find tutorials... once you have more specific questions come back and ask and we'll be happy to help (examples: what's the difference between TCP and UDP?, what does server-client mean?, etc.).

1 solution

There's a TON of resources in regards to this topic on the internet (without us rewriting everything here). Sockets are a very popular means of interprocess communications so a lot of people have already written tutorials.

Here's a few articles using Windows native sockets:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms738545(v=vs.85).aspx[^]
Beginning Winsock Programming - Simple TCP server[^]

You also have the option of using socket libraries that are cross-platform (can run on more than just Windows), plus there's also a lot of libraries that attempt to simplify the Windows socket process by enclosing everything in classes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900