TDME2 1.9.121
Network.cpp
Go to the documentation of this file.
2
3#include <string.h>
4
5#if defined(_WIN32)
6 #include <winsock2.h>
7 #include <ws2tcpip.h>
8#else
9 #include <netdb.h>
10 #include <arpa/inet.h>
11 #include <netinet/in.h>
12 #include <sys/socket.h>
13#endif
14
15#include <string>
16
17#include <tdme/tdme.h>
21
23
24using std::to_string;
25
29
30bool Network::initialize() {
31 #if defined(_WIN32)
32 WSADATA wsaData;
33 int result;
34 result = WSAStartup(MAKEWORD(2,2), &wsaData);
35 if (result != 0) {
36 Console::println("WinSock2 initialization failed: " + to_string(result));
37 return false;
38 }
39 #endif
40 return true;
41}
42
43const string Network::getIpByHostName(const string& hostName) {
44 struct hostent* hostEnt = gethostbyname(hostName.c_str());
45
46 if (hostEnt == nullptr) {
47 throw NetworkException("Could not resolve hostname");
48 }
49
50 switch (hostEnt->h_addrtype) {
51 case AF_INET:
52 for (auto i = 0; hostEnt->h_addr_list[i] != nullptr; i++) {
53 struct in_addr addr;
54 addr.s_addr = *(uint32_t*)hostEnt->h_addr_list[i++];
55 return string(inet_ntoa(addr));
56 }
57 break;
58 case AF_INET6:
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);
62 }
63 break;
64 }
65
66 throw NetworkException("Could not resolve hostname");
67}
Base exception class for network exceptions.
Base class of network sockets.
Definition: NetworkSocket.h:17
Network class.
Definition: Network.h:14
static const string getIpByHostName(const string &hostName)
Get IP by host name.
Definition: Network.cpp:43
Console class.
Definition: Console.h:26