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

@@ -9,6 +9,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
@@ -105,4 +107,4 @@ namespace Nz
m_handle = handle;
OnOpened();
}
}
}