17 lines
307 B
C++
17 lines
307 B
C++
#pragma once
|
|
|
|
#include "BaseDNS.h"
|
|
#include "ehs/EHS.h"
|
|
#include "ehs/Str.h"
|
|
#include "Socket.h"
|
|
|
|
namespace ehs
|
|
{
|
|
class EHS_LIB_IO DNS final : public BaseDNS
|
|
{
|
|
public:
|
|
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
|
|
|
|
static Str_8 Resolve(const Str_8 &hostname);
|
|
};
|
|
} |