mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 08:38:20 +00:00
20 lines
400 B
C++
20 lines
400 B
C++
#pragma once
|
|
|
|
#include "zeek/packet_analysis/Analyzer.h"
|
|
#include "zeek/packet_analysis/Component.h"
|
|
|
|
namespace zeek::packet_analysis::PacketDemo
|
|
{
|
|
|
|
class LLCDemo : public Analyzer
|
|
{
|
|
public:
|
|
LLCDemo();
|
|
~LLCDemo() override = default;
|
|
|
|
bool AnalyzePacket(size_t len, const uint8_t* data, Packet* packet) override;
|
|
|
|
static AnalyzerPtr Instantiate() { return std::make_shared<LLCDemo>(); }
|
|
};
|
|
|
|
}
|