Add test case for binpac flowbuffer frame length parsing bug

This commit is contained in:
Jon Siwek 2020-03-19 22:09:23 -07:00
parent e2aeb70efc
commit 7e57f0788c
13 changed files with 265 additions and 1 deletions

View file

@ -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;
}
}