Renamed LL-Analyzers to Packet Analyzers.

This commit is contained in:
Jan Grashoefer 2020-07-13 16:44:39 +02:00 committed by Tim Wojtulewicz
parent b2e6c9ac9a
commit e53ec46c23
148 changed files with 587 additions and 587 deletions

View file

@ -1,24 +0,0 @@
// See the file "COPYING" in the main distribution directory for copyright.
#include "MPLS.h"
#include "plugin/Plugin.h"
#include "llanalyzer/Component.h"
namespace zeek::plugin::LLAnalyzer_MPLS {
class Plugin : public zeek::plugin::Plugin {
public:
zeek::plugin::Configuration Configure()
{
AddComponent(new zeek::llanalyzer::Component("MPLS",
zeek::llanalyzer::MPLS::MPLSAnalyzer::Instantiate));
zeek::plugin::Configuration config;
config.name = "LLAnalyzer::MPLS";
config.description = "MPLS LL-Analyzer";
return config;
}
} plugin;
}