zeek/src/analyzer/protocol/sip/Plugin_TCP.cc
2015-03-19 19:57:05 -04:00

20 lines
514 B
C++

//See the file in the main distribution directory for copyright.
#include "plugin/Plugin.h"
#include "SIP_TCP.h"
namespace plugin {
namespace Bro_SIP_TCP {
class Plugin : public plugin::Plugin {
public:
plugin::Configuration Configure()
{
AddComponent(new ::analyzer::Component("SIP_TCP", ::analyzer::sip_tcp::SIP_Analyzer::Instantiate));
plugin::Configuration config;
config.name = "Bro::SIP_TCP";
config.description = "SIP analyzer (TCP)";
return config;
}
} plugin;
}
}