Disable the getaddrinfo_a based host name lookup.

Causes a stack address issue within vibe-core that still needs further debugging.
This commit is contained in:
Sönke Ludwig 2016-10-25 00:13:21 +02:00
parent 88600c5e21
commit 35f5852d8f

View file

@ -55,8 +55,8 @@ final class PosixEventDriver(Loop : PosixEventLoop) : EventDriver {
else alias SignalsDriver = DummyEventDriverSignals!Loop;
alias TimerDriver = LoopTimeoutTimerDriver;
alias SocketsDriver = PosixEventDriverSockets!Loop;
version (linux) alias DNSDriver = EventDriverDNS_GAIA!(EventsDriver, SignalsDriver);
else alias DNSDriver = EventDriverDNS_GAI!(EventsDriver, SignalsDriver);
/*version (linux) alias DNSDriver = EventDriverDNS_GAIA!(EventsDriver, SignalsDriver);
else*/ alias DNSDriver = EventDriverDNS_GAI!(EventsDriver, SignalsDriver);
alias FileDriver = ThreadedFileEventDriver!EventsDriver;
version (linux) alias WatcherDriver = InotifyEventDriverWatchers!Loop;
else alias WatcherDriver = PosixEventDriverWatchers!Loop;