mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-11 00:58:14 +08:00
Checkpoint. synergys now works. Still need to do lib/client and
synergyc.
This commit is contained in:
@@ -141,6 +141,18 @@ CNetworkAddress::operator=(const CNetworkAddress& addr)
|
||||
return *this;
|
||||
}
|
||||
|
||||
bool
|
||||
CNetworkAddress::operator==(const CNetworkAddress& addr) const
|
||||
{
|
||||
return ARCH->isEqualAddr(m_address, addr.m_address);
|
||||
}
|
||||
|
||||
bool
|
||||
CNetworkAddress::operator!=(const CNetworkAddress& addr) const
|
||||
{
|
||||
return !operator==(addr);
|
||||
}
|
||||
|
||||
bool
|
||||
CNetworkAddress::isValid() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user