From c3bfcf560b1db720c9bb08021b50bd31094e737c Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Wed, 12 Jun 2019 13:14:14 -0700 Subject: [PATCH] Removed check for port number in multipath path replacement logic --- node/Peer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Peer.cpp b/node/Peer.cpp index 95a260037..3357bb2ab 100644 --- a/node/Peer.cpp +++ b/node/Peer.cpp @@ -157,7 +157,7 @@ void Peer::received( break; } // If the path is the same address and port, simply assume this is a replacement - if ( (_paths[i].p->address().ipsEqual2(path->address()) && (_paths[i].p->address().port() == path->address().port()))) { + if ( (_paths[i].p->address().ipsEqual2(path->address()))) { replacePath = i; break; }