ConnStats: Expose num_packets_unprocessed

Not sure it's the best place to put, but we don't have packet analysis stats
bif and also num_packets is already there, so seems reasonable to put the
num_packets_unprocessed into
This commit is contained in:
Arne Welzel 2025-07-28 14:10:49 +02:00
parent fa476746bf
commit 120f061bcd
6 changed files with 20 additions and 3 deletions

View file

@ -50,6 +50,7 @@ struct Stats {
size_t num_fragments;
size_t max_fragments;
uint64_t num_packets;
uint64_t num_packets_unprocessed;
};
class Manager final {