Cellular: Rebase and fix tests as they got broken in rebase.

pull/7273/head
Teppo Järvelin 2018-06-26 09:14:15 +03:00
parent 4bd4042101
commit 9f68977fee
1 changed files with 11 additions and 0 deletions

View File

@ -73,6 +73,10 @@ SocketAddress::SocketAddress(const SocketAddress &addr)
{
}
SocketAddress::~SocketAddress()
{
}
bool SocketAddress::set_ip_address(const char *addr)
{
return false;
@ -123,6 +127,13 @@ SocketAddress::operator bool() const
return false;
}
SocketAddress &SocketAddress::operator=(const SocketAddress &addr)
{
set_addr(addr.get_addr());
set_port(addr.get_port());
return *this;
}
bool operator==(const SocketAddress &a, const SocketAddress &b)
{
return false;