Esempio n. 1
0
bool CSocketAddressIP::operator==( const CSocketAddressIP & ip ) const
{
	return( IsSameIP( ip ) );
}
bool CSocketAddress::IsSameIP_and_Port(const CSocketAddress& other) const
{
    return (IsSameIP(other) && (GetPort() == other.GetPort()) );
}