#ifndef NETWORK_NETWORK_H_ #define NETWORK_NETWORK_H_ #ifdef _WIN32 #include #else #include #include #include #include #include #include #endif #include "td/network/Socket.h" #include "td/network/IPAddress.h" #include "td/network/UDPSocket.h" #include "td/network/TCPSocket.h" namespace td { namespace network { class Dns { public: static IPAddresses Resolve(const std::string& host); }; } // ns network } // ns td #endif