00001 /****************************************************************************** 00002 * socketcall.h 00003 * Files to include for socket handling for windows and unix 00004 * 00005 *****************************************************************************/ 00006 00007 00008 #ifdef WIN_NT 00009 #include <winsock2.h> 00010 #else 00011 #include <sys/socket.h> 00012 #include <netinet/in.h> 00013 #include <netdb.h> 00014 #include <unistd.h> 00015 #endif 00016