First implementation of Posix Network

Former-commit-id: 2b73870d8eef4dc92038224164396390ac43df46
This commit is contained in:
Gawaboumga
2015-12-30 15:20:07 +01:00
parent 7f4a7c1012
commit 1d04ac8f13
10 changed files with 1169 additions and 2 deletions

View File

@@ -11,6 +11,8 @@
#if defined(NAZARA_PLATFORM_WINDOWS)
#include <Nazara/Network/Win32/SocketImpl.hpp>
#elif defined(NAZARA_PLATFORM_POSIX)
#include <Nazara/Network/Posix/SocketImpl.hpp>
#else
#error Missing implementation: Socket
#endif
@@ -60,4 +62,4 @@ namespace Nz
m_boundAddress = IpAddress::Invalid;
}
}
}