18 lines
357 B
C
18 lines
357 B
C
|
#pragma once
|
||
|
|
||
|
#include "Socket.h"
|
||
|
#include "ehs/Str.h"
|
||
|
|
||
|
namespace ehs
|
||
|
{
|
||
|
class BaseDNS
|
||
|
{
|
||
|
public:
|
||
|
static Str_8 Resolve(AddrType type, const Str_8 &hostname);
|
||
|
|
||
|
/// Resolves a hostname to an ip address.
|
||
|
/// @param [in] hostname The given hostname to resolve.
|
||
|
/// @returns The resulting ip address.
|
||
|
static Str_8 Resolve(const Str_8 &hostname);
|
||
|
};
|
||
|
}
|