feat: add dns

This commit is contained in:
2021-09-24 20:44:05 +02:00
parent af413dc781
commit 1a8cd54197
3 changed files with 18 additions and 10 deletions

View File

@@ -8,6 +8,8 @@
#include "render/Renderer.h"
#include "network/Network.h"
namespace td {
namespace client {
@@ -31,7 +33,7 @@ public:
void render();
void connect(const std::string& address, std::uint16_t port);
void connect(const network::IPAddresses& addresses, std::uint16_t port);
void closeConnection();
bool isConnected() const { return m_Connexion.getSocketStatus() == network::Socket::Connected; }

View File

@@ -5,10 +5,15 @@
namespace td {
namespace client {
void Client::connect(const std::string& address, std::uint16_t port) {
if (!m_Connexion.connect(address, port)) {
void Client::connect(const network::IPAddresses& addresses, std::uint16_t port) {
for (const network::IPAddress& address : addresses) {
if (address.IsValid() && m_Connexion.connect(address.ToString(), port)) {
m_Connected = true;
break;
}
}
if (!m_Connected) {
std::cout << "Failed to connect !\n";
return;
}
m_Connected = true;
}

View File

@@ -16,6 +16,7 @@
#include "misc/Time.h"
#include "imgui/imgui_filebrowser.h"
#include "render/Renderer.h"
#include "network/Network.h"
#include <iostream>
#include <cmath>
@@ -115,7 +116,7 @@ void renderMainMenu() {
ImGui::InputText("Server Adress", buffer, sizeof(buffer));
ImGui::InputInt("Port", &port, -1);
if (ImGui::Button("Rejoindre")) {
client->connect(buffer, port);
client->connect(td::network::Dns::Resolve(buffer), port);
triedToConnect = true;
}
if (triedToConnect) {
@@ -145,7 +146,7 @@ void renderMainMenu() {
if (!startServer(port, worldFilePath)) {
triedToCreate = true;
} else {
client->connect("127.0.0.1", port);
client->connect(td::network::Dns::Resolve("localhost"), port);
}
}
if (triedToCreate)