Browse Source

Don't abort connecting to required peer when it's not in node table.

cl-refactor
subtly 10 years ago
parent
commit
db12fc1d83
  1. 4
      libp2p/Host.cpp

4
libp2p/Host.cpp

@ -475,8 +475,10 @@ void Host::connect(std::shared_ptr<Peer> const& _p)
if (!!m_nodeTable && !m_nodeTable->haveNode(_p->id)) if (!!m_nodeTable && !m_nodeTable->haveNode(_p->id))
{ {
clog(NetWarn) << "Aborted connect. Node not in node table."; // connect was attempted, so try again by adding to node table
m_nodeTable->addNode(*_p.get()); m_nodeTable->addNode(*_p.get());
// abort unless peer is required
if (!_p->required)
return; return;
} }

Loading…
Cancel
Save