4fbc4e3be9
* init Net system on Windows * propagate DNS error * Add zlib 1.2.11 sources * link zlib statically for windows * remove not implemented function declaration * fix connect on Windows
32 lines
540 B
C++
32 lines
540 B
C++
/*
|
|
* IXNetSystem.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019 Machine Zone. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
# include <WS2tcpip.h>
|
|
# include <WinSock2.h>
|
|
# include <basetsd.h>
|
|
# include <io.h>
|
|
# include <ws2def.h>
|
|
#else
|
|
# include <arpa/inet.h>
|
|
# include <errno.h>
|
|
# include <netdb.h>
|
|
# include <netinet/tcp.h>
|
|
# include <sys/select.h>
|
|
# include <sys/socket.h>
|
|
# include <sys/stat.h>
|
|
# include <sys/time.h>
|
|
# include <unistd.h>
|
|
#endif
|
|
|
|
namespace ix
|
|
{
|
|
bool initNetSystem();
|
|
bool uninitNetSystem();
|
|
}
|