2015-02-10 13:22:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-09-18 18:52:12 +00:00
|
|
|
#include <common/Types.h>
|
2015-02-10 13:22:13 +00:00
|
|
|
|
2016-03-29 17:51:07 +00:00
|
|
|
namespace Poco
|
2015-02-10 13:22:13 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
namespace Net
|
|
|
|
{
|
|
|
|
class SocketAddress;
|
|
|
|
}
|
2015-02-10 13:22:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 17:51:07 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-05-07 20:25:26 +00:00
|
|
|
/** Lets you check if the address is similar to `localhost`.
|
|
|
|
* The purpose of this check is usually to make an assumption,
|
|
|
|
* that when we go to this address via the Internet, we'll get to ourselves.
|
|
|
|
* Please note that this check is not accurate:
|
|
|
|
* - the address is simply compared to the addresses of the network interfaces;
|
|
|
|
* - only the first address is taken for each network interface;
|
|
|
|
* - the routing rules that affect which network interface we go to the specified address are not checked.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
2017-09-07 14:38:35 +00:00
|
|
|
bool isLocalAddress(const Poco::Net::SocketAddress & address, UInt16 clickhouse_port);
|
2016-03-29 17:51:07 +00:00
|
|
|
|
2015-02-10 13:22:13 +00:00
|
|
|
}
|