14 lines
211 B
C++
14 lines
211 B
C++
#pragma once
|
|
|
|
#include "ehs/EHS.h"
|
|
#include "ehs/Str.h"
|
|
#include "Socket.h"
|
|
|
|
namespace ehs
|
|
{
|
|
class DNS
|
|
{
|
|
public:
|
|
static Str_8 Resolve(const AddrType addrType, const Str_8& hostName);
|
|
};
|
|
} |