You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.2 KiB
C++
88 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AzNetworking
|
|
{
|
|
inline uint8_t IpAddress::GetQuadA() const
|
|
{
|
|
return uint8_t((m_ipv4Address >> 24) & 0xFF);
|
|
}
|
|
|
|
inline uint8_t IpAddress::GetQuadB() const
|
|
{
|
|
return uint8_t((m_ipv4Address >> 16) & 0xFF);
|
|
}
|
|
|
|
inline uint8_t IpAddress::GetQuadC() const
|
|
{
|
|
return uint8_t((m_ipv4Address >> 8) & 0xFF);
|
|
}
|
|
|
|
inline uint8_t IpAddress::GetQuadD() const
|
|
{
|
|
return uint8_t((m_ipv4Address) & 0xFF);
|
|
}
|
|
|
|
inline bool IpAddress::operator ==(const IpAddress& rhs) const
|
|
{
|
|
return (m_ipv4Address == rhs.m_ipv4Address) && (m_port == rhs.m_port);
|
|
}
|
|
|
|
inline bool IpAddress::operator !=(const IpAddress& rhs) const
|
|
{
|
|
return (m_ipv4Address != rhs.m_ipv4Address) || (m_port != rhs.m_port);
|
|
}
|
|
|
|
inline bool IpAddress::operator < (const IpAddress& rhs) const
|
|
{
|
|
if (m_ipv4Address == rhs.m_ipv4Address)
|
|
{
|
|
return m_port < rhs.m_port;
|
|
}
|
|
|
|
return m_ipv4Address < rhs.m_ipv4Address;
|
|
}
|
|
|
|
inline bool IpAddress::operator <=(const IpAddress& rhs) const
|
|
{
|
|
if (m_ipv4Address == rhs.m_ipv4Address)
|
|
{
|
|
return m_port <= rhs.m_port;
|
|
}
|
|
|
|
return m_ipv4Address <= rhs.m_ipv4Address;
|
|
}
|
|
|
|
inline bool IpAddress::operator > (const IpAddress& rhs) const
|
|
{
|
|
return !(*this <= rhs);
|
|
}
|
|
|
|
inline bool IpAddress::operator >=(const IpAddress& rhs) const
|
|
{
|
|
return !(*this < rhs);
|
|
}
|
|
}
|
|
|
|
namespace AZStd
|
|
{
|
|
template <>
|
|
struct hash<AzNetworking::IpAddress>
|
|
{
|
|
inline size_t operator()(const AzNetworking::IpAddress& key) const
|
|
{
|
|
const uint64_t address = key.GetAddress(AzNetworking::ByteOrder::Host);
|
|
const uint64_t port = key.GetPort(AzNetworking::ByteOrder::Host);
|
|
const uint64_t hashValue = (port << 32) | address;
|
|
return AZStd::hash<uint64_t>()(hashValue);
|
|
}
|
|
};
|
|
}
|