working commit

This commit is contained in:
2026-04-22 15:02:00 +02:00
parent 468dc70d7c
commit 321232ae1d
14 changed files with 310 additions and 236 deletions
+4 -4
View File
@@ -3,18 +3,18 @@
#include <string>
class Address {
private:
private:
int family;
std::string address;
public:
public:
Address(const std::string iaddress, const int ifamily);
int GetFamily();
std::string GetAddress();
};
class Resolver {
private:
private:
int family;
public:
public:
std::expected<Address, std::string> Resolve(const std::string hostname);
};