mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
12 lines
266 B
C++
12 lines
266 B
C++
#include <array>
|
|
|
|
namespace Poco { namespace Net { class IPAddress; }}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Convert IP address to 16-byte array with IPv6 data (big endian). If it's an IPv4, map it to IPv6.
|
|
std::array<char, 16> IPv6ToBinary(const Poco::Net::IPAddress & address);
|
|
|
|
}
|