mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
Reformat the world
This commit is contained in:
parent
194cb24547
commit
b2f171ec69
714 changed files with 35149 additions and 35203 deletions
|
@ -1,16 +1,20 @@
|
|||
// See the file in the main distribution directory for copyright.
|
||||
|
||||
#include "zeek/plugin/Plugin.h"
|
||||
|
||||
#include "zeek/analyzer/Component.h"
|
||||
#include "zeek/analyzer/protocol/ftp/FTP.h"
|
||||
|
||||
namespace zeek::plugin::detail::Zeek_FTP {
|
||||
namespace zeek::plugin::detail::Zeek_FTP
|
||||
{
|
||||
|
||||
class Plugin : public zeek::plugin::Plugin {
|
||||
class Plugin : public zeek::plugin::Plugin
|
||||
{
|
||||
public:
|
||||
zeek::plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new zeek::analyzer::Component("FTP", zeek::analyzer::ftp::FTP_Analyzer::Instantiate));
|
||||
AddComponent(
|
||||
new zeek::analyzer::Component("FTP", zeek::analyzer::ftp::FTP_Analyzer::Instantiate));
|
||||
AddComponent(new zeek::analyzer::Component("FTP_ADAT", nullptr));
|
||||
|
||||
zeek::plugin::Configuration config;
|
||||
|
@ -18,6 +22,6 @@ public:
|
|||
config.description = "FTP analyzer";
|
||||
return config;
|
||||
}
|
||||
} plugin;
|
||||
} plugin;
|
||||
|
||||
} // namespace zeek::plugin::detail::Zeek_FTP
|
||||
} // namespace zeek::plugin::detail::Zeek_FTP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue