I have a program that makes some networks using Winsock, and one of our requirements now is to port our program to Linux. The only thing stopping us from doing this is Winsock.
My question is: how easy is it to port this to a Linux implementation?
Are there any pitfalls I should know about, and if I just include the appropriate header files, what things should I handle?
Thanks for any help!
I would post the code, but I cannot, unfortunately, for legal reasons. But our code uses the following:
WSAStartup(..)
WSACleanup(..)
Socket(..)
sendto(..)
recvfrom(..)
ioctlsocket(..)
setsocketopt(..)
source
share