mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
10 lines
280 B
C++
10 lines
280 B
C++
#include "plugin/Plugin.h"
|
|
|
|
#include "Extract.h"
|
|
|
|
BRO_PLUGIN_BEGIN(Bro, FileExtract)
|
|
BRO_PLUGIN_DESCRIPTION("Extract file content to local file system");
|
|
BRO_PLUGIN_FILE_ANALYZER("EXTRACT", Extract);
|
|
BRO_PLUGIN_BIF_FILE(events);
|
|
BRO_PLUGIN_BIF_FILE(functions);
|
|
BRO_PLUGIN_END
|