epee: remove backward compatible endian specific address serialization
This commit is contained in:
parent
39a343d76e
commit
3004835b51
|
@ -94,17 +94,13 @@ namespace net_utils
|
||||||
BEGIN_KV_SERIALIZE_MAP()
|
BEGIN_KV_SERIALIZE_MAP()
|
||||||
if (is_store)
|
if (is_store)
|
||||||
{
|
{
|
||||||
KV_SERIALIZE_VAL_POD_AS_BLOB_N(m_ip, "ip")
|
|
||||||
uint32_t ip = SWAP32LE(this_ref.m_ip);
|
uint32_t ip = SWAP32LE(this_ref.m_ip);
|
||||||
epee::serialization::selector<is_store>::serialize(ip, stg, hparent_section, "m_ip");
|
epee::serialization::selector<is_store>::serialize(ip, stg, hparent_section, "m_ip");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!epee::serialization::selector<is_store>::serialize_t_val_as_blob(this_ref.m_ip, stg, hparent_section, "ip"))
|
KV_SERIALIZE(m_ip)
|
||||||
{
|
const_cast<ipv4_network_address&>(this_ref).m_ip = SWAP32LE(this_ref.m_ip);
|
||||||
KV_SERIALIZE(m_ip)
|
|
||||||
const_cast<ipv4_network_address&>(this_ref).m_ip = SWAP32LE(this_ref.m_ip);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
KV_SERIALIZE(m_port)
|
KV_SERIALIZE(m_port)
|
||||||
END_KV_SERIALIZE_MAP()
|
END_KV_SERIALIZE_MAP()
|
||||||
|
|
Loading…
Reference in New Issue