mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 13:08:20 +00:00
20 lines
385 B
C++
20 lines
385 B
C++
|
|
#pragma once
|
|
|
|
#include <Val.h>
|
|
#include <file_analysis/Analyzer.h>
|
|
|
|
namespace plugin {
|
|
namespace Demo_Foo {
|
|
|
|
class Foo : public file_analysis::Analyzer {
|
|
public:
|
|
virtual bool DeliverStream(const u_char* data, uint64 len);
|
|
|
|
static file_analysis::Analyzer* Instantiate(RecordVal* args, file_analysis::File* file);
|
|
|
|
protected:
|
|
Foo(RecordVal* args, file_analysis::File* file);
|
|
};
|
|
|
|
} }
|