mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
handle hostname for STREAM CREATE
This commit is contained in:
parent
e091eba831
commit
bd33ac202f
@ -496,10 +496,9 @@ namespace client
|
||||
else
|
||||
m_BufferOffset = 0;
|
||||
|
||||
std::shared_ptr<Address> addr;
|
||||
auto pos = destination.find(".b32.i2p");
|
||||
if (pos != std::string::npos)
|
||||
addr = std::make_shared<Address>(destination.substr (0, pos));
|
||||
std::shared_ptr<const Address> addr;
|
||||
if (destination.find(".i2p") != std::string::npos)
|
||||
addr = context.GetAddressBook().GetAddress (destination);
|
||||
else
|
||||
{
|
||||
auto dest = std::make_shared<i2p::data::IdentityEx> ();
|
||||
|
Loading…
Reference in New Issue
Block a user