mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
Move packet_analysis::Dispatcher to detail namespace
This commit is contained in:
parent
ad6d70d4e6
commit
6900f3301e
13 changed files with 43 additions and 40 deletions
|
@ -12,6 +12,8 @@ namespace zeek::packet_analysis {
|
|||
class Analyzer; // Forward declaration for Value
|
||||
using AnalyzerPtr = std::shared_ptr<zeek::packet_analysis::Analyzer>;
|
||||
|
||||
namespace detail {
|
||||
|
||||
/**
|
||||
* The Dispatcher class manages identifier-to-analyzer mappings.
|
||||
*/
|
||||
|
@ -62,4 +64,5 @@ private:
|
|||
inline uint32_t GetHighestIdentifier() const { return lowest_identifier + table.size() - 1; }
|
||||
};
|
||||
|
||||
} // namespace detail
|
||||
} // namespace zeek::packet_analysis
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue