Thursday, July 9, 2009

C++ Library for TCP/UDP Implementation?

I have to implement a UDP layer simulating TCP. I was just wondering if C++ already has a library for those types or if I have to download one designed by someone else? Thanks

C++ Library for TCP/UDP Implementation?
While you install the C++ development libs for your platform, that will automatically install libs for network programming as well. That includes TCP/IP as well.





Start with looking up for information about calls like socket or bind or send/recv for your platform. For Windows, you should be having MSDN installed. For Linux, you must have relevant developer man pages installed. I hope it is the same for other Unix variants as well.





Anyway, too much to write here until you specify a specific OS to begin with.


No comments:

Post a Comment