Reformat the world

This commit is contained in:
Tim Wojtulewicz 2021-09-16 15:35:39 -07:00
parent 194cb24547
commit b2f171ec69
714 changed files with 35149 additions and 35203 deletions

View file

@ -1,22 +1,26 @@
// See the file in the main distribution directory for copyright.
#include "zeek/plugin/Plugin.h"
#include "zeek/analyzer/Component.h"
#include "zeek/analyzer/protocol/imap/IMAP.h"
namespace zeek::plugin::detail::Zeek_IMAP {
namespace zeek::plugin::detail::Zeek_IMAP
{
class Plugin : public zeek::plugin::Plugin {
class Plugin : public zeek::plugin::Plugin
{
public:
zeek::plugin::Configuration Configure() override
{
AddComponent(new zeek::analyzer::Component("IMAP", zeek::analyzer::imap::IMAP_Analyzer::Instantiate));
AddComponent(new zeek::analyzer::Component(
"IMAP", zeek::analyzer::imap::IMAP_Analyzer::Instantiate));
zeek::plugin::Configuration config;
config.name = "Zeek::IMAP";
config.description = "IMAP analyzer (StartTLS only)";
return config;
}
} plugin;
} plugin;
} // namespace zeek::plugin::detail::Zeek_IMAP
} // namespace zeek::plugin::detail::Zeek_IMAP