ClickHouse/base/base/getFQDNOrHostName.cpp
2021-10-02 10:13:14 +03:00

26 lines
425 B
C++

#include <Poco/Net/DNS.h>
#include <base/getFQDNOrHostName.h>
namespace
{
std::string getFQDNOrHostNameImpl()
{
try
{
return Poco::Net::DNS::thisHost().name();
}
catch (...)
{
return Poco::Net::DNS::hostName();
}
}
}
const std::string & getFQDNOrHostName()
{
static std::string result = getFQDNOrHostNameImpl();
return result;
}