zeek/src/packet_analysis/protocol/gre/GRE.h

20 lines
547 B
C++

// See the file "COPYING" in the main distribution directory for copyright.
#pragma once
#include "zeek/iosource/Packet.h"
#include "zeek/packet_analysis/Analyzer.h"
namespace zeek::packet_analysis::GRE {
class GREAnalyzer : public Analyzer {
public:
GREAnalyzer();
~GREAnalyzer() override = default;
bool AnalyzePacket(size_t len, const uint8_t* data, Packet* packet) override;
static zeek::packet_analysis::AnalyzerPtr Instantiate() { return std::make_shared<GREAnalyzer>(); }
};
} // namespace zeek::packet_analysis::GRE