From 4e0174cebb09c4ad718f7021eb2fb22510eceb73 Mon Sep 17 00:00:00 2001 From: Lennon Day Reynolds Date: Tue, 15 Jul 2025 14:48:02 -0700 Subject: [PATCH] the matter doesn't order --- node/Switch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Switch.cpp b/node/Switch.cpp index 1533a14f1..980126a02 100644 --- a/node/Switch.cpp +++ b/node/Switch.cpp @@ -1041,10 +1041,10 @@ unsigned long Switch::doTimerTasks(void* tPtr, int64_t now) Mutex::Lock rql(rq->lock); if ((rq->timestamp) && (rq->complete)) { if ((rq->frag0.tryDecode(RR, tPtr, rq->flowId)) || ((now - rq->timestamp) > ZT_RECEIVE_QUEUE_TIMEOUT)) { - rq->timestamp = 0; if ((now - rq->timestamp) > ZT_RECEIVE_QUEUE_TIMEOUT) { Metrics::vl1_incomplete_reassembly_rx++; } + rq->timestamp = 0; } else { const Address src(rq->frag0.source());