Reorganized project again.

This commit is contained in:
2023-12-17 15:56:13 -08:00
parent 54b9e82789
commit 3acb78f247
250 changed files with 1586 additions and 1586 deletions

14
include/io/socket/DNS.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "EHS.h"
#include "Str.h"
#include "Socket.h"
namespace ehs
{
class DNS
{
public:
static Str_8 Resolve(const AddrType addrType, const Str_8& hostName);
};
}