EHS/src/io/socket/BaseDNS.cpp

19 lines
354 B
C++

#include "ehs/io/socket/BaseDNS.h"
#include "ehs/Log.h"
namespace ehs
{
Str_8 BaseDNS::Resolve(const IP type, const Str_8 &hostname)
{
EHS_LOG_INT(LogType::ERR, 0, "Unsupported Operating System.");
return {};
}
Str_8 BaseDNS::Resolve(const Str_8 &hostname)
{
EHS_LOG_INT(LogType::ERR, 0, "Unsupported Operating System.");
return {};
}
}