mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00

- Replace uses of identifier_t with uint32_t - Replace repeated usage of tuple type for Analysis results with type alias
23 lines
459 B
C++
23 lines
459 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#pragma once
|
|
|
|
#include <packet_analysis/Analyzer.h>
|
|
#include <packet_analysis/Component.h>
|
|
|
|
namespace zeek::packet_analysis::IPv6 {
|
|
|
|
class IPv6Analyzer : public Analyzer {
|
|
public:
|
|
IPv6Analyzer();
|
|
~IPv6Analyzer() override = default;
|
|
|
|
AnalysisResultTuple Analyze(Packet* packet) override;
|
|
|
|
static AnalyzerPtr Instantiate()
|
|
{
|
|
return std::make_shared<IPv6Analyzer>();
|
|
}
|
|
};
|
|
|
|
}
|