mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
Test case for a dynamic input reader.
This commit is contained in:
parent
f45526f373
commit
3d1442e86b
11 changed files with 423 additions and 72 deletions
22
testing/btest/plugins/reader-plugin/src/Plugin.h
Normal file
22
testing/btest/plugins/reader-plugin/src/Plugin.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
#ifndef BRO_PLUGIN_DEMO_FOO
|
||||
#define BRO_PLUGIN_DEMO_FOO
|
||||
|
||||
#include <plugin/Plugin.h>
|
||||
|
||||
namespace plugin {
|
||||
namespace Demo_Foo {
|
||||
|
||||
class Plugin : public ::plugin::Plugin
|
||||
{
|
||||
protected:
|
||||
// Overridden from plugin::Plugin.
|
||||
virtual plugin::Configuration Configure();
|
||||
};
|
||||
|
||||
extern Plugin plugin;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue