mirror of
https://github.com/nomoresat/DPITunnel-cli.git
synced 2025-04-16 10:47:44 +02:00
8 lines
124 B
C++
8 lines
124 B
C++
#ifndef DNS_H
|
|
#define DNS_H
|
|
|
|
#include <string>
|
|
|
|
int resolve_host(const std::string &host, std::string &ip);
|
|
|
|
#endif //DNS_H
|