Browse Source

fixed #1350 use GetAddress insted GetIdentHash

pull/1359/head
orignal 6 years ago
parent
commit
5c3992018f
  1. 17
      libi2pd_client/WebSocks.cpp

17
libi2pd_client/WebSocks.cpp

@ -81,11 +81,14 @@ namespace client
void CreateStreamTo(const std::string & addr, int port, StreamConnectFunc complete) void CreateStreamTo(const std::string & addr, int port, StreamConnectFunc complete)
{ {
auto & addressbook = i2p::client::context.GetAddressBook(); auto & addressbook = i2p::client::context.GetAddressBook();
i2p::data::IdentHash ident; auto a = addressbook.GetAddress (addr);
if(addressbook.GetIdentHash(addr, ident)) { if (a && a->IsIdentHash ())
{
// address found // address found
m_Dest->CreateStream(complete, ident, port); m_Dest->CreateStream(complete, a->identHash, port);
} else { }
else
{
// not found // not found
complete(nullptr); complete(nullptr);
} }
@ -443,12 +446,12 @@ namespace client
addr = line.substr(0, itr); addr = line.substr(0, itr);
port = std::atoi(line.substr(itr+1).c_str()); port = std::atoi(line.substr(itr+1).c_str());
} }
i2p::data::IdentHash ident; auto a = addressbook.GetAddress (addr);
if(addressbook.GetIdentHash(addr, ident)) if (a && a->IsIdentHash ())
{ {
const char * data = payload.c_str() + idx + 1; const char * data = payload.c_str() + idx + 1;
size_t len = payload.size() - (1 + line.size()); size_t len = payload.size() - (1 + line.size());
m_Datagram->SendDatagramTo((const uint8_t*)data, len, ident, m_RemotePort, port); m_Datagram->SendDatagramTo((const uint8_t*)data, len, a->identHash, m_RemotePort, port);
} }
} else { } else {
// wtf? // wtf?

Loading…
Cancel
Save