I extracted a program from a stackoverflow answer and tried to compile it, using the MSVC++ V6 IDE, but the compiler complained that I don't have any of the following .h include files:
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <ifaddrs.h>
#include <errno.h>
How do get these missing include files?