mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
file_analysis: include cleanup
This commit is contained in:
parent
653b3f43e0
commit
0cf5799ca6
16 changed files with 52 additions and 20 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "DataEvent.h"
|
||||
#include "EventRegistry.h"
|
||||
#include "Event.h"
|
||||
#include "Func.h"
|
||||
#include "util.h"
|
||||
#include "file_analysis/Manager.h"
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "Val.h"
|
||||
#include "File.h"
|
||||
#include "Analyzer.h"
|
||||
#include "EventHandler.h"
|
||||
|
||||
namespace file_analysis {
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ module FileExtract;
|
|||
|
||||
%%{
|
||||
#include "file_analysis/Manager.h"
|
||||
#include "file_analysis/file_analysis.bif.h"
|
||||
%%}
|
||||
|
||||
## :zeek:see:`FileExtract::set_limit`.
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include "types.bif.h"
|
||||
#include "ocsp_events.bif.h"
|
||||
|
||||
#include "file_analysis/File.h"
|
||||
#include "file_analysis/Manager.h"
|
||||
|
||||
#include <openssl/x509.h>
|
||||
|
|
|
@ -4,14 +4,14 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "../File.h"
|
||||
#include "Analyzer.h"
|
||||
#include "X509Common.h"
|
||||
|
||||
#include <openssl/ocsp.h>
|
||||
|
||||
namespace file_analysis {
|
||||
|
||||
class File;
|
||||
|
||||
class OCSP : public file_analysis::X509Common {
|
||||
public:
|
||||
bool DeliverStream(const u_char* data, uint64_t len) override;
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "events.bif.h"
|
||||
#include "types.bif.h"
|
||||
|
||||
#include "file_analysis/File.h"
|
||||
#include "file_analysis/Manager.h"
|
||||
|
||||
#include <broker/error.hh>
|
||||
|
|
|
@ -5,16 +5,20 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "file_analysis/File.h"
|
||||
#include "Analyzer.h"
|
||||
|
||||
#include <openssl/x509.h>
|
||||
#include <openssl/asn1.h>
|
||||
|
||||
class EventHandlerPtr;
|
||||
class Reporter;
|
||||
class StringVal;
|
||||
|
||||
namespace file_analysis {
|
||||
|
||||
class Tag;
|
||||
class File;
|
||||
|
||||
class X509Common : public file_analysis::Analyzer {
|
||||
public:
|
||||
~X509Common() override {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue