Useing c or c++ how do you do tcp/ip and stuff like that. I dont want to use winsock, so if someone knows how to do it with out that please tell me.
Printable View
Useing c or c++ how do you do tcp/ip and stuff like that. I dont want to use winsock, so if someone knows how to do it with out that please tell me.
Why don't you want to use Winsock? You can't get much lower without reimplementing your own TCP/IP stack. And trust me, you don't want to. Just understanding the protocol, let along writing code to do it is incredibly hard :eek:
Anyway, since networking is an OS service, you're pretty much limited to what Windows can do. Anyway, the function names are basically compatible with those on POSIX systems.