From 35f5852d8f45f210ab7dd968c41cabe137c9347a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Tue, 25 Oct 2016 00:13:21 +0200 Subject: [PATCH] Disable the getaddrinfo_a based host name lookup. Causes a stack address issue within vibe-core that still needs further debugging. --- source/eventcore/drivers/posix.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/eventcore/drivers/posix.d b/source/eventcore/drivers/posix.d index 665d918..eb136cb 100644 --- a/source/eventcore/drivers/posix.d +++ b/source/eventcore/drivers/posix.d @@ -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;