10 #include <arpa/inet.h>
11 #include <netinet/in.h>
12 #include <sys/socket.h>
30bool Network::initialize() {
34 result = WSAStartup(MAKEWORD(2,2), &wsaData);
36 Console::println(
"WinSock2 initialization failed: " + to_string(result));
44 struct hostent* hostEnt = gethostbyname(hostName.c_str());
46 if (hostEnt ==
nullptr) {
50 switch (hostEnt->h_addrtype) {
52 for (
auto i = 0; hostEnt->h_addr_list[i] !=
nullptr; i++) {
54 addr.s_addr = *(uint32_t*)hostEnt->h_addr_list[i++];
55 return string(inet_ntoa(addr));
59 for (
auto i = 0; hostEnt->h_addr_list[i] !=
nullptr; i++) {
60 char ipv6AddressString[46];
61 return string(inet_ntop(AF_INET6, (in6_addr*)hostEnt->h_addr_list[i++], ipv6AddressString, INET6_ADDRSTRLEN) == NULL?
"":ipv6AddressString);
Base exception class for network exceptions.
Base class of network sockets.
static const string getIpByHostName(const string &hostName)
Get IP by host name.