mirror of https://github.com/ARMmbed/mbed-os.git
Cellular: Rebase and fix tests as they got broken in rebase.
parent
4bd4042101
commit
9f68977fee
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue