mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
25 lines
448 B
C++
25 lines
448 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "ZIP.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_ZIP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::analyzer::Component("ZIP", 0));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Zeek::ZIP";
|
|
config.description = "Generic ZIP support analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|