added LocalDestinationInfo I2PControl request

This commit is contained in:
PobreGato
2026-08-16 22:50:47 +03:00
parent 4dd8577731
commit 52bde6a907
6 changed files with 71 additions and 6 deletions
+2 -6
View File
@@ -1447,13 +1447,9 @@ namespace client
{
std::vector<std::shared_ptr<const i2p::stream::Stream> > ret;
if (m_StreamingDestination)
{
for (auto& it: m_StreamingDestination->GetStreams ())
ret.push_back (it.second);
}
m_StreamingDestination->GetStreamsList (ret);
for (auto& it: m_StreamingDestinationsByPorts)
for (auto& it1: it.second->GetStreams ())
ret.push_back (it1.second);
it.second->GetStreamsList (ret);
return ret;
}