mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 08:14:15 +00:00
fixed crash
This commit is contained in:
parent
e038467c89
commit
e901307d8d
@ -342,13 +342,13 @@ namespace transport
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Transports::HandleNTCPResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
void Transports::HandleNTCPResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
||||||
const i2p::data::IdentHash& ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver)
|
i2p::data::IdentHash ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver)
|
||||||
{
|
{
|
||||||
auto it1 = m_Peers.find (ident);
|
auto it1 = m_Peers.find (ident);
|
||||||
if (it1 != m_Peers.end () && it1->second.router)
|
if (it1 != m_Peers.end ())
|
||||||
{
|
{
|
||||||
auto& peer = it1->second;
|
auto& peer = it1->second;
|
||||||
if (!ecode)
|
if (!ecode && peer.router)
|
||||||
{
|
{
|
||||||
auto address = (*it).endpoint ().address ();
|
auto address = (*it).endpoint ().address ();
|
||||||
LogPrint (eLogInfo, (*it).host_name (), " has been resolved to ", address);
|
LogPrint (eLogInfo, (*it).host_name (), " has been resolved to ", address);
|
||||||
@ -360,10 +360,9 @@ namespace transport
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
LogPrint (eLogError, "Unable to resolve NTCP address: ", ecode.message ());
|
||||||
|
m_Peers.erase (it1);
|
||||||
}
|
}
|
||||||
|
|
||||||
LogPrint (eLogError, "Unable to resolve NTCP address: ", ecode.message ());
|
|
||||||
m_Peers.erase (it1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Transports::CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router)
|
void Transports::CloseSession (std::shared_ptr<const i2p::data::RouterInfo> router)
|
||||||
|
@ -101,7 +101,7 @@ namespace transport
|
|||||||
|
|
||||||
void NTCPResolve (const std::string& addr, const i2p::data::IdentHash& ident);
|
void NTCPResolve (const std::string& addr, const i2p::data::IdentHash& ident);
|
||||||
void HandleNTCPResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
void HandleNTCPResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
||||||
const i2p::data::IdentHash& ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
i2p::data::IdentHash ident, std::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
||||||
|
|
||||||
void DetectExternalIP ();
|
void DetectExternalIP ();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user