2020-10-10 18:37:02 +00:00
|
|
|
#pragma once
|
2019-06-15 14:20:32 +00:00
|
|
|
#include <array>
|
2020-11-08 16:01:12 +00:00
|
|
|
#include <common/types.h>
|
2019-06-15 14:20:32 +00:00
|
|
|
|
|
|
|
namespace Poco { namespace Net { class IPAddress; }}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-11-21 14:56:58 +00:00
|
|
|
/// Convert IP address to raw binary with IPv6 data (big endian). If it's an IPv4, map it to IPv6.
|
|
|
|
/// Saves result into the first 16 bytes of `res`.
|
|
|
|
void IPv6ToRawBinary(const Poco::Net::IPAddress & address, char * res);
|
|
|
|
|
2019-06-15 14:20:32 +00:00
|
|
|
/// 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);
|
|
|
|
|
|
|
|
}
|