Fixes for windows (#45)

* 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
This commit is contained in:
Dimon4eg
2019-04-26 02:26:53 +03:00
committed by Benjamin Sergeant
parent e251c81d43
commit 4fbc4e3be9
7 changed files with 56 additions and 5 deletions

View File

@ -27,7 +27,7 @@ namespace ix
_done(false),
_id(_nextId++)
{
initNetSystem();
}
DNSLookup::~DNSLookup()
@ -137,6 +137,11 @@ namespace ix
return nullptr;
}
if (!_errMsg.empty())
{
errMsg = _errMsg;
}
std::unique_lock<std::mutex> rlock(_resMutex);
return _res;
}