#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(IP type, const Str_8 &hostname);

        static Str_8 Resolve(const Str_8 &hostname);
    };
}