mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-27 14:08:39 +01:00
Fix custom broadcasts not resolving on windows.
This commit is contained in:
parent
147fc50be1
commit
fae4df7012
1 changed files with 2 additions and 1 deletions
|
@ -470,8 +470,9 @@ static void socket_timeouts(struct TCP_Socket &socket, double extra_time)
|
||||||
|
|
||||||
std::set<uint32> Networking::resolve_ip(std::string dns)
|
std::set<uint32> Networking::resolve_ip(std::string dns)
|
||||||
{
|
{
|
||||||
|
run_at_startup();
|
||||||
std::set<uint32> ips;
|
std::set<uint32> ips;
|
||||||
struct addrinfo* result;
|
struct addrinfo* result = NULL;
|
||||||
|
|
||||||
if (getaddrinfo(dns.c_str(), NULL, NULL, &result) == 0) {
|
if (getaddrinfo(dns.c_str(), NULL, NULL, &result) == 0) {
|
||||||
for (struct addrinfo *res = result; res != NULL; res = res->ai_next) {
|
for (struct addrinfo *res = result; res != NULL; res = res->ai_next) {
|
||||||
|
|
Loading…
Reference in a new issue