mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
packet_analysis/Manager: Rename GetUnprocessedCount() to PacketsUnprocessed()
Mostly to align with PacketsProcessed()
This commit is contained in:
parent
7894d88461
commit
fa476746bf
2 changed files with 9 additions and 4 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue