mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 04:57:53 +00:00
Fix nonsensical equality comparison which may prevent certain links from being regarded as preferred in multipath scenarios
This commit is contained in:
parent
7e92d478a1
commit
b6074da498
@ -267,7 +267,7 @@ void Bond::nominatePathToBond(const SharedPtr<Path>& path, int64_t now)
|
||||
if (commonLink) {
|
||||
for (unsigned int j = 0; j < ZT_MAX_PEER_NETWORK_PATHS; ++j) {
|
||||
if (_paths[j].p && _paths[j].p.ptr() != _paths[i].p.ptr()) {
|
||||
if (RR->bc->getLinkBySocket(_policyAlias, _paths[j].p->localSocket()) == commonLink, true) {
|
||||
if (RR->bc->getLinkBySocket(_policyAlias, _paths[j].p->localSocket(), true) == commonLink) {
|
||||
bFoundCommonLink = true;
|
||||
_paths[j].onlyPathOnLink = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user