mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
small fix to make setLocalAddress() and setExtAddress() also call mPeerMgr-UpdateOwnAddresses()
This commit is contained in:
parent
67cf8baf77
commit
d87de5121a
@ -482,10 +482,6 @@ void p3NetMgrIMPL::netStatusTick()
|
||||
std::cerr << "ExtAddr: " << sockaddr_storage_tostring(tmpip);
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
/* XXX HACK TO FIX drbob: ALLOWING
|
||||
* ExtAddrFinder -> ExtAddrStableOk = true
|
||||
* (which it is not normally) */
|
||||
|
||||
setExtAddress(tmpip);
|
||||
}
|
||||
}
|
||||
@ -1152,7 +1148,8 @@ bool p3NetMgrIMPL::setLocalAddress(const struct sockaddr_storage &addr)
|
||||
}
|
||||
|
||||
mLocalAddr = addr;
|
||||
}
|
||||
mPeerMgr->UpdateOwnAddress(mLocalAddr, mExtAddr);
|
||||
}
|
||||
|
||||
if (changed)
|
||||
{
|
||||
@ -1188,7 +1185,8 @@ bool p3NetMgrIMPL::setExtAddress(const struct sockaddr_storage &addr)
|
||||
}
|
||||
|
||||
mExtAddr = addr;
|
||||
}
|
||||
mPeerMgr->UpdateOwnAddress(mLocalAddr, mExtAddr);
|
||||
}
|
||||
|
||||
if (changed)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user