From 7d03a41e3e8a12913bb281cadc3fc67a399052cc Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sat, 27 Aug 2016 16:09:02 -0400 Subject: [PATCH] try manual expiration of tags --- Datagram.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Datagram.cpp b/Datagram.cpp index 18a147b8..9a5724aa 100644 --- a/Datagram.cpp +++ b/Datagram.cpp @@ -138,6 +138,8 @@ namespace datagram LogPrint(eLogInfo, "DatagramDestination: expiring idle session with ", ident.ToBase32()); m_Sessions.erase(ident); } + m_LocalDestination->CleanupExpiredTags(); + m_LocalDestination->CleanupUnconfirmedTags(); ScheduleCleanup(); }