mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
23 lines
492 B
C++
23 lines
492 B
C++
// See the file in the main distribution directory for copyright.
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "XMPP.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_XMPP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::analyzer::Component("XMPP", ::analyzer::xmpp::XMPP_Analyzer::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Bro::XMPP";
|
|
config.description = "XMPP analyzer (StartTLS only)";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|