zeek/src/packet_analysis/protocol/ipv6/IPv6.h
Tim Wojtulewicz c2500d03d6 Remove packet_analysis/Defines.h
- Replace uses of identifier_t with uint32_t
- Replace repeated usage of tuple type for Analysis results with type alias
2020-09-23 11:13:28 -07:00

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>();
}
};
}