EHS/include/IO/Socket/DNS.h

14 lines
215 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
#include "../../EHS.h"
#include "../../Str.h"
#include "Socket.h"
namespace lwe
{
class DNS
{
public:
static Str_8 Resolve(const AddrType addrType, const Str_8& hostName);
};
}