mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
24 lines
535 B
C++
24 lines
535 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "IMAP.h"
|
|
#include "plugin/Plugin.h"
|
|
#include "analyzer/Component.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_IMAP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure() override
|
|
{
|
|
AddComponent(new ::analyzer::Component("IMAP", ::analyzer::imap::IMAP_Analyzer::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Zeek::IMAP";
|
|
config.description = "IMAP analyzer (StartTLS only)";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|