1
0

Replace evdns with getaddrinfo and getnameinfo (#3766)

This commit is contained in:
peterbell10
2017-06-15 10:03:49 +01:00
committed by Lukas Pioch
parent 7fa5725f3b
commit 035ecdc9e2
12 changed files with 301 additions and 249 deletions

View File

@@ -0,0 +1,63 @@
// NetworkLookup.cpp
// Implements the cNetworkLookup class representing an executor for asynchronous lookup tasks
#include "Globals.h"
#include "NetworkLookup.h"
cNetworkLookup::cNetworkLookup() :
cIsThread("NetworkLookup")
{
}
cNetworkLookup::~cNetworkLookup()
{
Stop();
}
void cNetworkLookup::ScheduleLookup(std::function<void()> a_Lookup)
{
m_WorkQueue.EnqueueItem(std::move(a_Lookup));
}
void cNetworkLookup::Stop()
{
m_ShouldTerminate = true;
m_WorkQueue.Clear();
m_WorkQueue.EnqueueItem([](){}); // Dummy work to wake up the thread
cIsThread::Stop();
}
void cNetworkLookup::Execute()
{
while (!m_ShouldTerminate)
{
// Execute the next task in the queue
auto Work = m_WorkQueue.DequeueItem();
Work();
}
}