14 lines
215 B
C
14 lines
215 B
C
|
#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);
|
||
|
};
|
||
|
}
|