mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Renamed LL-Analyzers to Packet Analyzers.
This commit is contained in:
parent
b2e6c9ac9a
commit
e53ec46c23
148 changed files with 587 additions and 587 deletions
23
src/packet_analysis/protocol/mpls/MPLS.h
Normal file
23
src/packet_analysis/protocol/mpls/MPLS.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
// 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::MPLS {
|
||||
|
||||
class MPLSAnalyzer : public zeek::packet_analysis::Analyzer {
|
||||
public:
|
||||
MPLSAnalyzer();
|
||||
~MPLSAnalyzer() override = default;
|
||||
|
||||
std::tuple<AnalyzerResult, identifier_t> Analyze(Packet* packet) override;
|
||||
|
||||
static zeek::packet_analysis::Analyzer* Instantiate()
|
||||
{
|
||||
return new MPLSAnalyzer();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue