mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00

This was just done via sed. There's a number of files that don't have a license entry at all.
22 lines
688 B
C++
22 lines
688 B
C++
// See the file "COPYING" 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 {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
public:
|
|
zeek::plugin::Configuration Configure() override {
|
|
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;
|
|
|
|
} // namespace zeek::plugin::detail::Zeek_IMAP
|