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