mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Add override specifier to Configure() method in almost all of the internal plugins
This commit is contained in:
parent
3c470ffe13
commit
6aaabceed2
65 changed files with 66 additions and 70 deletions
|
@ -9,7 +9,7 @@ namespace Zeek_FileDataEvent {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("DATA_EVENT", ::file_analysis::DataEvent::Instantiate));
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Zeek_FileEntropy {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("ENTROPY", ::file_analysis::Entropy::Instantiate));
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Zeek_FileExtract {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("EXTRACT", ::file_analysis::Extract::Instantiate));
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Zeek_FileHash {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("MD5", ::file_analysis::MD5::Instantiate));
|
||||
AddComponent(new ::file_analysis::Component("SHA1", ::file_analysis::SHA1::Instantiate));
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Zeek_PE {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("PE", ::file_analysis::PE::Instantiate));
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ namespace Zeek_Unified2 {
|
|||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
plugin::Configuration Configure() override
|
||||
{
|
||||
AddComponent(new ::file_analysis::Component("UNIFIED2", ::file_analysis::Unified2::Instantiate));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue