mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
25 lines
478 B
C++
25 lines
478 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "HTTP.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_HTTP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::analyzer::Component("HTTP", ::analyzer::http::HTTP_Analyzer::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Bro::HTTP";
|
|
config.description = "HTTP analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|