mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-17 21:26:04 +00:00
delete single message routing session immediately
This commit is contained in:
parent
cc14b526cd
commit
b9e2b7bf64
12
Garlic.cpp
12
Garlic.cpp
@ -148,7 +148,7 @@ namespace garlic
|
|||||||
size_t GarlicRoutingSession::CreateAESBlock (uint8_t * buf, const I2NPMessage * msg)
|
size_t GarlicRoutingSession::CreateAESBlock (uint8_t * buf, const I2NPMessage * msg)
|
||||||
{
|
{
|
||||||
size_t blockSize = 0;
|
size_t blockSize = 0;
|
||||||
bool createNewTags = m_Owner && ((int)m_SessionTags.size () <= m_NumTags/2);
|
bool createNewTags = m_Owner && m_NumTags && ((int)m_SessionTags.size () <= m_NumTags/2);
|
||||||
UnconfirmedTags * newTags = createNewTags ? GenerateSessionTags () : nullptr;
|
UnconfirmedTags * newTags = createNewTags ? GenerateSessionTags () : nullptr;
|
||||||
*(uint16_t *)buf = newTags ? htobe16 (newTags->numTags) : 0; // tag count
|
*(uint16_t *)buf = newTags ? htobe16 (newTags->numTags) : 0; // tag count
|
||||||
blockSize += 2;
|
blockSize += 2;
|
||||||
@ -469,9 +469,17 @@ namespace garlic
|
|||||||
I2NPMessage * GarlicDestination::WrapMessage (const i2p::data::RoutingDestination& destination,
|
I2NPMessage * GarlicDestination::WrapMessage (const i2p::data::RoutingDestination& destination,
|
||||||
I2NPMessage * msg, bool attachLeaseSet)
|
I2NPMessage * msg, bool attachLeaseSet)
|
||||||
{
|
{
|
||||||
auto session = GetRoutingSession (destination, attachLeaseSet ? 32 : 0); // don't use tag if no LeaseSet
|
if (attachLeaseSet) // we should maintain this session
|
||||||
|
{
|
||||||
|
auto session = GetRoutingSession (destination, 32); // 32 tags by default
|
||||||
return session->WrapSingleMessage (msg);
|
return session->WrapSingleMessage (msg);
|
||||||
}
|
}
|
||||||
|
else // one time session
|
||||||
|
{
|
||||||
|
GarlicRoutingSession session (this, &destination, 0); // don't use tag if no LeaseSet
|
||||||
|
return session.WrapSingleMessage (msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
GarlicRoutingSession * GarlicDestination::GetRoutingSession (
|
GarlicRoutingSession * GarlicDestination::GetRoutingSession (
|
||||||
const i2p::data::RoutingDestination& destination, int numTags)
|
const i2p::data::RoutingDestination& destination, int numTags)
|
||||||
|
Loading…
Reference in New Issue
Block a user