From 6f035f3bc6381870cb75702e015409caa3b63154 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Fri, 8 Jan 2021 23:12:21 +0100 Subject: [PATCH] A few extra status for process status --- src/output/output.cpp | 1 + src/output/output.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/output/output.cpp b/src/output/output.cpp index a06f26b9..64344c8c 100644 --- a/src/output/output.cpp +++ b/src/output/output.cpp @@ -1601,6 +1601,7 @@ namespace Mist{ // let's load it thisPacket.reInit(curPage[nxt.tid].mapped + nxt.offset, 0, true); thisIdx = nxt.tid; + thisTime = thisPacket.getTime(); // if it failed, drop the track and continue if (!thisPacket){ dropTrack(nxt.tid, "packet load failure"); diff --git a/src/output/output.h b/src/output/output.h index 7209766d..866a1e8c 100644 --- a/src/output/output.h +++ b/src/output/output.h @@ -163,6 +163,7 @@ namespace Mist{ uint64_t lastPacketTime; size_t thisIdx; + uint64_t thisTime; }; }// namespace Mist