mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
24 lines
502 B
C++
24 lines
502 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "Extract.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_FileExtract {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::file_analysis::Component("EXTRACT", ::file_analysis::Extract::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Bro::FileExtract";
|
|
config.description = "Extract file content";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|