Move packet_analysis::Dispatcher to detail namespace

This commit is contained in:
Tim Wojtulewicz 2024-04-26 13:11:45 -07:00
parent ad6d70d4e6
commit 6900f3301e
13 changed files with 43 additions and 40 deletions

View file

@ -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