mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator
synced 2025-07-06 14:32:19 +08:00
Fix custom broadcasts not resolving on windows.
This commit is contained in:
@ -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) {
|
||||||
|
Reference in New Issue
Block a user