mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 04:04:16 +00:00
fixed #1350 use GetAddress insted GetIdentHash
This commit is contained in:
parent
f5b682619f
commit
5c3992018f
@ -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
|
{
|
||||||
m_Dest->CreateStream(complete, ident, port);
|
// address found
|
||||||
} else {
|
m_Dest->CreateStream(complete, a->identHash, port);
|
||||||
|
}
|
||||||
|
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…
x
Reference in New Issue
Block a user