mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
23 lines
499 B
C++
23 lines
499 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::VLAN {
|
|
|
|
class VLANAnalyzer : public Analyzer {
|
|
public:
|
|
VLANAnalyzer();
|
|
~VLANAnalyzer() override = default;
|
|
|
|
AnalyzerResult Analyze(Packet* packet, const uint8_t*& data) override;
|
|
|
|
static zeek::packet_analysis::AnalyzerPtr Instantiate()
|
|
{
|
|
return std::make_shared<VLANAnalyzer>();
|
|
}
|
|
};
|
|
|
|
}
|