mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 22:25:04 -04:00
small fix to make setLocalAddress() and setExtAddress() also call mPeerMgr-UpdateOwnAddresses()
This commit is contained in:
parent
67cf8baf77
commit
d87de5121a
1 changed files with 4 additions and 6 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue