mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 23:28:20 +00:00
Add test case for binpac flowbuffer frame length parsing bug
This commit is contained in:
parent
e2aeb70efc
commit
7e57f0788c
13 changed files with 265 additions and 1 deletions
|
@ -0,0 +1,26 @@
|
|||
#include "plugin/Plugin.h"
|
||||
#include "analyzer/Component.h"
|
||||
|
||||
#include "FOO.h"
|
||||
|
||||
namespace plugin {
|
||||
namespace Foo_FOO {
|
||||
|
||||
class Plugin : public plugin::Plugin {
|
||||
public:
|
||||
plugin::Configuration Configure()
|
||||
{
|
||||
AddComponent(new ::analyzer::Component("FOO",
|
||||
::analyzer::FOO::FOO_Analyzer::InstantiateAnalyzer));
|
||||
|
||||
plugin::Configuration config;
|
||||
config.name = "FOO::Foo";
|
||||
config.description = "Foo Analyzer analyzer";
|
||||
config.version.major = 1;
|
||||
config.version.minor = 0;
|
||||
return config;
|
||||
}
|
||||
} plugin;
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue