zeek/src/packet_analysis/protocol/ieee802_11/IEEE802_11.h
2020-09-23 11:13:28 -07:00

23 lines
494 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::IEEE802_11 {
class IEEE802_11Analyzer : public Analyzer {
public:
IEEE802_11Analyzer();
~IEEE802_11Analyzer() override = default;
std::tuple<AnalyzerResult, identifier_t> Analyze(Packet* packet) override;
static Analyzer* Instantiate()
{
return new IEEE802_11Analyzer();
}
};
}