mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
request termination for existing session
This commit is contained in:
parent
b860a4799d
commit
4d0047ae7c
|
@ -267,9 +267,9 @@ namespace transport
|
||||||
if (!ret.second)
|
if (!ret.second)
|
||||||
{
|
{
|
||||||
// session already exists
|
// session already exists
|
||||||
LogPrint (eLogWarning, "SSU2: Session to ", ident->GetIdentHash ().ToBase64 (), " aready exists");
|
LogPrint (eLogWarning, "SSU2: Session to ", ident->GetIdentHash ().ToBase64 (), " already exists");
|
||||||
// terminate existing
|
// terminate existing
|
||||||
GetService ().post (std::bind (&SSU2Session::Terminate, ret.first->second));
|
GetService ().post (std::bind (&SSU2Session::RequestTermination, ret.first->second, eSSU2TerminationReasonTerminationReceived));
|
||||||
// update session
|
// update session
|
||||||
ret.first->second = session;
|
ret.first->second = session;
|
||||||
}
|
}
|
||||||
|
@ -572,7 +572,8 @@ namespace transport
|
||||||
auto addr = address->IsV6 () ? r->GetSSU2V6Address () : r->GetSSU2V4Address ();
|
auto addr = address->IsV6 () ? r->GetSSU2V6Address () : r->GetSSU2V4Address ();
|
||||||
if (addr)
|
if (addr)
|
||||||
{
|
{
|
||||||
bool isValidEndpoint = !addr->host.is_unspecified () && addr->port;
|
bool isValidEndpoint = !addr->host.is_unspecified () && addr->port &&
|
||||||
|
!i2p::util::net::IsInReservedRange(addr->host);
|
||||||
if (isValidEndpoint)
|
if (isValidEndpoint)
|
||||||
{
|
{
|
||||||
auto s = FindPendingOutgoingSession (boost::asio::ip::udp::endpoint (addr->host, addr->port));
|
auto s = FindPendingOutgoingSession (boost::asio::ip::udp::endpoint (addr->host, addr->port));
|
||||||
|
|
Loading…
Reference in a new issue