32 lines
707 B
C
Executable File
32 lines
707 B
C
Executable File
// All this crap just to include type SOCKET
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
typedef int socklen_t;
|
|
// IP_DONTFRAGMENT is different between winsock 1 and winsock 2. Therefore, Winsock2.h must be linked againt Ws2_32.lib
|
|
// winsock.h must be linked against WSock32.lib. If these two are mixed up the flag won't work correctly
|
|
#include <winsock2.h>
|
|
#else
|
|
#define closesocket close
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <netdb.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#define INVALID_SOCKET -1
|
|
//#include "RakMemoryOverride.h"
|
|
/// Unix/Linux uses ints for sockets
|
|
typedef int SOCKET;
|
|
#endif
|