From 8152012f0b3b4bb6074dc1138b6d71b902c2a8a6 Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 7 Mar 2026 08:50:34 -0500 Subject: [PATCH] call terminate for new streams on close --- libi2pd/Streaming.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libi2pd/Streaming.cpp b/libi2pd/Streaming.cpp index b6cfa3fd..880391eb 100644 --- a/libi2pd/Streaming.cpp +++ b/libi2pd/Streaming.cpp @@ -263,7 +263,7 @@ namespace stream } return; } - + if (receivedSeqn == m_LastReceivedSequenceNumber + 1) { // we have received next in sequence message @@ -1351,6 +1351,7 @@ namespace stream } break; case eStreamStatusClosed: + case eStreamStatusNew: // already closed Terminate (); break;