mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
connect through introducer in v4 thread
This commit is contained in:
parent
0a6d849435
commit
2b8e662f81
4
SSU.cpp
4
SSU.cpp
@ -278,7 +278,7 @@ namespace transport
|
||||
{
|
||||
if (router->UsesIntroducer ())
|
||||
{
|
||||
CreateSessionThroughIntroducer (router, peerTest);
|
||||
m_Service.post (std::bind (&SSUServer::CreateSessionThroughIntroducer, this, router, peerTest)); // always V4 thread
|
||||
return;
|
||||
}
|
||||
auto address = router->GetSSUAddress (!context.SupportsV6 ());
|
||||
@ -321,7 +321,7 @@ namespace transport
|
||||
{
|
||||
if (router && router->UsesIntroducer ())
|
||||
{
|
||||
auto address = router->GetSSUAddress (!context.SupportsV6 ());
|
||||
auto address = router->GetSSUAddress (true); // v4 only for now
|
||||
if (address)
|
||||
{
|
||||
boost::asio::ip::udp::endpoint remoteEndpoint (address->host, address->port);
|
||||
|
Loading…
Reference in New Issue
Block a user