packet_analysis/Manager: Rename GetUnprocessedCount() to PacketsUnprocessed()

Mostly to align with PacketsProcessed()
This commit is contained in:
Arne Welzel 2025-07-28 13:41:30 +02:00
parent 7894d88461
commit fa476746bf
2 changed files with 9 additions and 4 deletions

View file

@ -169,11 +169,16 @@ public:
return pkt_filter;
}
[[deprecated("Remove in v8.1: Use PacketsUnprocessed() instead.")]]
uint64_t GetUnprocessedCount() const {
return PacketsUnprocessed();
}
/**
* Returns the total number of packets received that weren't considered
* processed by some analyzer.
*/
uint64_t GetUnprocessedCount() const { return total_not_processed; }
uint64_t PacketsUnprocessed() const { return total_not_processed; }
/**
* Tracks the given analyzer for the current packet's analyzer history.