mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-27 00:44:20 +00:00
use shared_ptr instead
This commit is contained in:
parent
3d07ddfba5
commit
b7a2c11e81
@ -531,17 +531,17 @@ namespace client
|
|||||||
void I2PUDPServerTunnel::HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len)
|
void I2PUDPServerTunnel::HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
||||||
auto & session = ObtainUDPSession(from, toPort, fromPort);
|
auto session = ObtainUDPSession(from, toPort, fromPort);
|
||||||
session.IPSocket.send_to(boost::asio::buffer(buf, len), m_RemoteEndpoint);
|
session->IPSocket.send_to(boost::asio::buffer(buf, len), m_RemoteEndpoint);
|
||||||
session.LastActivity = i2p::util::GetMillisecondsSinceEpoch();
|
session->LastActivity = i2p::util::GetMillisecondsSinceEpoch();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void I2PUDPServerTunnel::ExpireStale(const uint64_t delta) {
|
void I2PUDPServerTunnel::ExpireStale(const uint64_t delta) {
|
||||||
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
||||||
uint64_t now = i2p::util::GetMillisecondsSinceEpoch();
|
uint64_t now = i2p::util::GetMillisecondsSinceEpoch();
|
||||||
std::remove_if(m_Sessions.begin(), m_Sessions.end(), [now, delta](const UDPSession & u) -> bool {
|
std::remove_if(m_Sessions.begin(), m_Sessions.end(), [now, delta](const std::shared_ptr<UDPSession> & u) -> bool {
|
||||||
return now - u.LastActivity >= delta;
|
return now - u->LastActivity >= delta;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -558,21 +558,21 @@ namespace client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UDPSession & I2PUDPServerTunnel::ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort)
|
std::shared_ptr<UDPSession> I2PUDPServerTunnel::ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort)
|
||||||
{
|
{
|
||||||
auto ih = from.GetIdentHash();
|
auto ih = from.GetIdentHash();
|
||||||
for ( UDPSession & s : m_Sessions )
|
for (auto & s : m_Sessions )
|
||||||
{
|
{
|
||||||
if ( s.Identity == ih)
|
if ( s->Identity == ih)
|
||||||
{
|
{
|
||||||
/** found existing session */
|
/** found existing session */
|
||||||
LogPrint(eLogDebug, "UDPServer: found session ", s.IPSocket.local_endpoint(), " ", ih.ToBase32());
|
LogPrint(eLogDebug, "UDPServer: found session ", s->IPSocket.local_endpoint(), " ", ih.ToBase32());
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** create new udp session */
|
/** create new udp session */
|
||||||
boost::asio::ip::udp::endpoint ep(m_LocalAddress, 0);
|
boost::asio::ip::udp::endpoint ep(m_LocalAddress, 0);
|
||||||
m_Sessions.push_back(UDPSession(ep, m_LocalDest, m_RemoteEndpoint, &ih, localPort, remotePort));
|
m_Sessions.push_back(std::make_shared<UDPSession>(ep, m_LocalDest, m_RemoteEndpoint, &ih, localPort, remotePort));
|
||||||
auto & back = m_Sessions.back();
|
auto & back = m_Sessions.back();
|
||||||
return back;
|
return back;
|
||||||
}
|
}
|
||||||
@ -642,16 +642,16 @@ namespace client
|
|||||||
{
|
{
|
||||||
std::vector<std::shared_ptr<DatagramSessionInfo> > sessions;
|
std::vector<std::shared_ptr<DatagramSessionInfo> > sessions;
|
||||||
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
std::lock_guard<std::mutex> lock(m_SessionsMutex);
|
||||||
for ( UDPSession & s : m_Sessions )
|
for (auto & s : m_Sessions )
|
||||||
{
|
{
|
||||||
if (!s.m_Destination) continue;
|
if (!s->m_Destination) continue;
|
||||||
auto info = s.m_Destination->GetInfoForRemote(s.Identity);
|
auto info = s->m_Destination->GetInfoForRemote(s->Identity);
|
||||||
if(!info) continue;
|
if(!info) continue;
|
||||||
|
|
||||||
auto sinfo = std::make_shared<DatagramSessionInfo>();
|
auto sinfo = std::make_shared<DatagramSessionInfo>();
|
||||||
sinfo->Name = m_Name;
|
sinfo->Name = m_Name;
|
||||||
sinfo->LocalIdent = std::make_shared<i2p::data::IdentHash>(m_LocalDest->GetIdentHash().data());
|
sinfo->LocalIdent = std::make_shared<i2p::data::IdentHash>(m_LocalDest->GetIdentHash().data());
|
||||||
sinfo->RemoteIdent = std::make_shared<i2p::data::IdentHash>(s.Identity.data());
|
sinfo->RemoteIdent = std::make_shared<i2p::data::IdentHash>(s->Identity.data());
|
||||||
sinfo->CurrentIBGW = info->IBGW;
|
sinfo->CurrentIBGW = info->IBGW;
|
||||||
sinfo->CurrentOBEP = info->OBEP;
|
sinfo->CurrentOBEP = info->OBEP;
|
||||||
sessions.push_back(sinfo);
|
sessions.push_back(sinfo);
|
||||||
|
@ -202,14 +202,14 @@ namespace client
|
|||||||
private:
|
private:
|
||||||
|
|
||||||
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
void HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len);
|
||||||
UDPSession & ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort);
|
std::shared_ptr<UDPSession> ObtainUDPSession(const i2p::data::IdentityEx& from, uint16_t localPort, uint16_t remotePort);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const std::string m_Name;
|
const std::string m_Name;
|
||||||
boost::asio::ip::address m_LocalAddress;
|
boost::asio::ip::address m_LocalAddress;
|
||||||
boost::asio::ip::udp::endpoint m_RemoteEndpoint;
|
boost::asio::ip::udp::endpoint m_RemoteEndpoint;
|
||||||
std::mutex m_SessionsMutex;
|
std::mutex m_SessionsMutex;
|
||||||
std::vector<UDPSession> m_Sessions;
|
std::vector<std::shared_ptr<UDPSession> > m_Sessions;
|
||||||
std::shared_ptr<i2p::client::ClientDestination> m_LocalDest;
|
std::shared_ptr<i2p::client::ClientDestination> m_LocalDest;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user