// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers // // This file is part of Bytecoin. // // Bytecoin is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Bytecoin is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with Bytecoin. If not, see . #include "Ipv4Resolver.h" #include #include #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include #include #include #include #include namespace System { Ipv4Resolver::Ipv4Resolver() : dispatcher(nullptr) { } Ipv4Resolver::Ipv4Resolver(Dispatcher& dispatcher) : dispatcher(&dispatcher) { } Ipv4Resolver::Ipv4Resolver(Ipv4Resolver&& other) : dispatcher(other.dispatcher) { if (dispatcher != nullptr) { other.dispatcher = nullptr; } } Ipv4Resolver::~Ipv4Resolver() { } Ipv4Resolver& Ipv4Resolver::operator=(Ipv4Resolver&& other) { dispatcher = other.dispatcher; if (dispatcher != nullptr) { other.dispatcher = nullptr; } return *this; } Ipv4Address Ipv4Resolver::resolve(const std::string& host) { assert(dispatcher != nullptr); if (dispatcher->interrupted()) { throw InterruptedException(); } addrinfo hints = { 0, AF_INET, SOCK_STREAM, IPPROTO_TCP, 0, NULL, NULL, NULL }; addrinfo* addressInfos; int result = getaddrinfo(host.c_str(), NULL, &hints, &addressInfos); if (result != 0) { throw std::runtime_error("Ipv4Resolver::resolve, getaddrinfo failed, " + errorMessage(result)); } size_t count = 0; for (addrinfo* addressInfo = addressInfos; addressInfo != nullptr; addressInfo = addressInfo->ai_next) { ++count; } std::mt19937 generator{ std::random_device()() }; size_t index = std::uniform_int_distribution(0, count - 1)(generator); addrinfo* addressInfo = addressInfos; for (size_t i = 0; i < index; ++i) { addressInfo = addressInfo->ai_next; } Ipv4Address address(ntohl(reinterpret_cast(addressInfo->ai_addr)->sin_addr.S_un.S_addr)); freeaddrinfo(addressInfo); return address; } }