Implement WinAPI based TCP socket support.

This commit is contained in:
Sönke Ludwig 2017-06-11 11:00:31 +02:00
parent ab796477e2
commit ca11fdec82
5 changed files with 510 additions and 35 deletions

View file

@ -53,7 +53,7 @@ final class WinAPIEventDriver : EventDriver {
m_core = new WinAPIEventDriverCore(m_timers);
m_events = new WinAPIEventDriverEvents(m_core);
m_files = new WinAPIEventDriverFiles(m_core);
m_sockets = new WinAPIEventDriverSockets();
m_sockets = new WinAPIEventDriverSockets(m_core);
m_dns = new WinAPIEventDriverDNS();
m_watchers = new WinAPIEventDriverWatchers(m_core);
}