Browse Source

handle hostname for STREAM CREATE

pull/1656/head
orignal 4 years ago
parent
commit
bd33ac202f
  1. 7
      libi2pd_client/SAM.cpp

7
libi2pd_client/SAM.cpp

@ -496,10 +496,9 @@ namespace client
else else
m_BufferOffset = 0; m_BufferOffset = 0;
std::shared_ptr<Address> addr; std::shared_ptr<const Address> addr;
auto pos = destination.find(".b32.i2p"); if (destination.find(".i2p") != std::string::npos)
if (pos != std::string::npos) addr = context.GetAddressBook().GetAddress (destination);
addr = std::make_shared<Address>(destination.substr (0, pos));
else else
{ {
auto dest = std::make_shared<i2p::data::IdentityEx> (); auto dest = std::make_shared<i2p::data::IdentityEx> ();

Loading…
Cancel
Save